Q:

jquery event listener

$('#selector').on('click',function(){
    //Your code here
});                  
21
// There are quite a few abstracted versions of the following
$('element').on('event', function() {
	// Do something
});

// Where 'event' is something such as 'click', 'hover' etc

// They are abstracted as seen below
$('element').click(function(){
	// Do something
});
$('element').hover(function(){
	// Do something
});

// etc...
6
$( "#foo" ).bind( "click", function() {
  alert( "User clicked on 'foo.'" );
});
1

New to Communities?

Join the community