
Dear Sir,
Thank You a lot for your continuos support.Again i am in need of your help. What is the javascript code to disable a link,once someone clicks on that link. If someone click on that link,a new page will be opened,But,how to disable that link after clicking.Will it be done through javascript or css
Please help me.Urgent Regards Debasis

Hello Friend,
Try this:
form.html:
<html>
<script>
function fun() {
document.getElementById("ide").style.visibility='hidden';
}
</script>
<a href="hello.html" onclick="fun()" id="ide" >CLICK HERE</a>
</html>
Thanks