RemoveAttribute
Mar 6, 2005The following code is not working:
<script>
function checkthis()
{
var c=document.getElementById("rm");
c.removeAttribute("href");
}
</script>
<body onload="checkthis()>
<a href="check()" id="rm>Test</a>
</body>
I tried to remove href attribute for anchor tag.