jquery bind click
$( "#foo" ).bind( "click", function() {
alert( "User clicked on 'foo.'" );
});
jquery bind click
$( "#foo" ).bind( "click", function() {
alert( "User clicked on 'foo.'" );
});
bind jquery
/* As of jQuery 3.0, .bind() has been deprecated.
It was superseded by the .on() method, as presented in the exemple below */
$("#foo").on("click", function(){
alert("User click on foo");
});
bind jquery
$(document).ready(function() { // attach a handler to an event for the elements
$("#demo").bind('blur', function(e) {
//dom event fired
});
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us