Check uncheck all checkbox in asp.net web form st using jquery
Check uncheck all check boxes on an asp.net web form using jquery. On click of the link it behaves like a toggle button and changes its text also it check and un check all check boxes on the asp.net page Asp.net Code <a href=”#” id=”lnkAll”>Check all</a> JQuery Code $(“#lnkAll”).click(function(e) { var currentVal = $(“#lnkAll”).text(); if [...]
