Copyright © tutorialspoint.com
This method adds, specifies or removes attributes passed as either a hash or a name/value pair.
element.writeAttribute(attribute[, value]); OR element.writeAttribute(attributes); |
<html> <head> <title>Prototype examples</title> <script type="text/javascript" src="/javascript/prototype.js"> </script> <script> function showResult() { $('test').writeAttribute("align", "right" ); } </script> </head> <body> <p id="test" align="center" >Formatted Paragraph</p> <br /> <input type="button" value="Click" onclick="showResult();"/> </body> </html> |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com