“atar jQuery” Código de respuesta

jQuery bind hacer clic

$( "#foo" ).bind( "click", function() {
  alert( "User clicked on 'foo.'" );
});
Sticky Pingu

atar jQuery

$(document).ready(function() {              // attach a handler to an event for the elements        
$("#demo").bind('blur', function(e) {
	//dom event fired
});
});
BlueMoon

atar 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");
});
WKShaker

Respuestas similares a “atar jQuery”

Preguntas similares a “atar jQuery”

Más respuestas relacionadas con “atar jQuery” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código