nguyenminh

jquery hide or show class

    function oneClickTimeout()
    {
      $(".btn").attr("disabled", false);
    }
    $(function () {
        $(".btn").click(function () {
            $(".btn").attr("disabled", true);
             setTimeout("oneClickTimeout()",2000);
            $('#addtournament').submit();
        });
    });

  $(function(){
     $(".btn").click(function () {
       $(".btn").attr("disabled", true);
       $('#system-notification').submit();
     });
   });

Categorised in: Tổng hợp

0 Comments for "jquery hide or show class"

Leave a Reply

Your email address will not be published. Required fields are marked *