Javascript examples for DOM:Element removeAttribute
Element removeAttribute() Method - Remove the href attribute from an <a> element:
<!DOCTYPE html> <html> <body> <a id="myAnchor" href="http://www.java2s.com">A Link: go to java2s.com</a> <button onclick="myFunction()">Test</button> <script> function myFunction() {//from w ww. j av a 2 s .c o m document.getElementById("myAnchor").removeAttribute("href"); } </script> </body> </html>