<script>
$(document).ready(function(){
$("#<%=chkShowNames.ClientID %>").click(function () {
var checked = $(this).attr('checked');
;
if (checked) {
alert("Checked");
}
else {
alert("Un CHecked");
}
});
});
</script>
<asp:CheckBox ID="chkShowNames" runat="server" Text="Show Names"></asp:CheckBox>
0 comments:
Post a Comment