jquery alert button code example
Example 1: css click event jquery
$('h1').click(function () {
$(this).css('color', 'blue')
});
Example 2: jquery onclick function
$( "#other" ).click(function() {
$( "#target" ).click();
});
$('h1').click(function () {
$(this).css('color', 'blue')
});
$( "#other" ).click(function() {
$( "#target" ).click();
});