I\'ve seen this done in a lot of sites recently, but can\'t seem to track one down. Essentially I want to \"disable\" an entire panel (that\'s in the form on an HTML table) whe
Try the below with Jquery
$("#freez").click(function(){ $('#tbl1').find('input, textarea, button, select').attr('disabled','disabled'); }); $("#unfreez").click(function(){ $('#tbl1').find('input, textarea, button, select').removeAttr("disabled"); });