Thursday, April 23, 2015

ASP.NET CheckBoxList Operations with jQuery - Get Text of Selected Items

 $("[id*=CheckBoxList1] input:checked").each(function () {
         alert($(this).next().html());
     });

No comments:

Post a Comment