ALERT ON CLICK
HTML code to display an alert when the user clicks over a link
1.Paste these codes under the head section of your HTML code
letters in red will be displayed as alert
<script type="text/javascript"> function irsh() { alert ("REGISTER TO START DOWNLOADING!"); } </script> |
letters in red is the link
<a href="javascript:irsh()">DOWNLOAD</a> |