When we use Custom Edit Tag, Client Side Event Stopped Working.
//Custom Edit Tag
<input type="text" placeholder="Mobile No" aria-label="MobileNo" aria-describedby="basic-addon1">
//Client Side Event
{ // keys = event types, values = handler functions
"keyup": function(e) {
// Your code
var scream = this.value;
if (scream.charAt( 0 ) == '0' ) {
ew.alert("0 at Start of the Mobile Number not allowed");
return false;
}
}
}