alert in jquery code example
Example 1: css click event jquery
$('h1').click(function () {
$(this).css('color', 'blue')
});
Example 2: alert jquery
alert("Hello! I am an alert box!!");
$('h1').click(function () {
$(this).css('color', 'blue')
});
alert("Hello! I am an alert box!!");