How to make the function clickrun every time after the user reloads the page?
what I'm trying to do: run alert( "Handler for .click() called." );before user click,
HTML:
<p>First Paragraph</p>
JQuery
$( "p" ).click(function() {
alert( "Handler for .click() after reload was called." );
});
user6446281
source
share