Advertisement
ZazoTazo

Change Border Color

Dec 9th, 2020
641
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Task 1</title>
  5.     </head>
  6.     <body>
  7.         <label>Name</label><br>
  8.         <input type="text" id="name" onfocus="onFocus(this)" onblur="onBlur(this)"><br>
  9.         <label>Age</label><br>
  10.         <input type="text" id="age" onfocus="onFocus(this)" onblur="onBlur(this)"><br>
  11.         <label>Comment</label><br>
  12.         <input type="text" id="Comment" onfocus="onFocus(this)" onblur="onBlur(this)"><br>
  13.  
  14.         <script>
  15.             function onFocus(x){
  16.                 x.style.borderColor = "blue";
  17.             }
  18.             function onBlur(x){
  19.                 x.style.borderColor = "initial";
  20.             }
  21.         </script>
  22.     </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement