click event on div in jquery code example
Example 1: jquery click event
$('#selector').on('click',function(){
//Your code here
});
Example 2: css click event jquery
$('h1').click(function () {
$(this).css('color', 'blue')
});
Example 3: jquery click event
$( "#other" ).click(function() {
$( "#target" ).click();
});