Area password Property - Change the password part of a specific area in an image-map: - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Area

Description

Area password Property - Change the password part of a specific area in an image-map:

Demo Code

ResultView the demo in separate window

<!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>/*w ww  .j a va 2s .  c  o m*/

<button onclick="myFunction()">change the password part of the href attribute</button>

<p id="demo"></p>

<script>
function myFunction() {
    document.getElementById("myId").password = "newPassword101";
    document.getElementById("demo").innerHTML = "The password was changed from 'password123' to 'newPassword101'.";
}
</script>

</body>
</html>

Related Tutorials