jquery click event to javascript code example
Example 1: jquery click event
$('#selector').on('click',function(){
//Your code here
});
Example 2: jquery click method
$("p").click(function(){
$(this).hide();
});
$('#selector').on('click',function(){
//Your code here
});
$("p").click(function(){
$(this).hide();
});