latest Post

Disable-Enable all controls of page using jQuery

Disable-Enable all controls of page using jQuery

$(document).ready(function() {
   $("#btnEnableDisable").toggle(function() {
      $("*").attr("disabled", "disabled");
          $(this).attr("disabled", "");
       }, function() {
          $("*").attr("disabled", "");
  });
});

About Mallikarjun A

Mallikarjun A
Recommended Posts × +

0 comments:

Post a Comment