Public · Protected · Private
toggle to enable,disable all controls of page
Type: Public  |  Created: 2012-08-16  |  Frozen: Yes
« Previous Public Blog Next Public Blog »
Comments
  • $(document).ready(function()

    { $("#btnEnableDisable").toggle(

               function() {

                $("*").attr("disabled", "disabled");

              $(this).attr("disabled", ""); },  

               function() { $("*").attr("disabled", "");

    });

    });

    });

    2012-08-16 18:35
This blog is frozen. No new comments or edits allowed.