hi all
How to get the id of a checkbox control on javascript alert box
function GetId(sender, e) {
try {
var Leve1 = e.get_id();
alert(Leve1);
}
catch (e) {
alert("error"+e.message);
}
}
<asp:CheckBox ID="chkbx1" runat="server" OnClick="return GetId(this);" Font-Size="XX-Small" />
regards
Mohammed Rafi