「エレメントの属性を削除」サンプルコード <html> <head> <title>element.removeAttribute - エレメントの属性を削除</title> </head> <body> <!--エレメントの属性を削除のサンプル--> <a id="sample" rel="test">samplelink</a><br> <script type="text/javascript"> function findElement() { var element = document.getElementById("sample"); element.removeAttribute("rel"); alert("aタグのrel属性は「"+element.getAttribute("rel")+"」です"); } </script> <button onclick="findE