Javascript examples for DOM HTML Element:Area
Area username Property - Change the username part of a specific area in an image-map:
<!DOCTYPE html> <html> <body> <img src="http://java2s.com/resources/a.png" width="145" height="126" usemap="#myMap"> <map name="myMap"> <area id="myId" shape="circle" coords="125,60,10" alt="Venus" href="https://myUserName:password123@www.example.com"> </map>/*from w ww . j a v a2s .c o m*/ <button onclick="myFunction()">change the username part of the href attribute</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myId").username = "newUsername"; document.getElementById("demo").innerHTML = "The username was changed from 'myUserName' to 'newUsername'."; } </script> </body> </html>