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>

2.Now paste these lines under the body section
letters in red is the link



<a href="javascript:irsh()">DOWNLOAD</a>

The link goes like this
Here is the alert

About Us