Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Task 1</title>
- </head>
- <body>
- <label>Name</label><br>
- <input type="text" id="name" onfocus="onFocus(this)" onblur="onBlur(this)"><br>
- <label>Age</label><br>
- <input type="text" id="age" onfocus="onFocus(this)" onblur="onBlur(this)"><br>
- <label>Comment</label><br>
- <input type="text" id="Comment" onfocus="onFocus(this)" onblur="onBlur(this)"><br>
- <script>
- function onFocus(x){
- x.style.borderColor = "blue";
- }
- function onBlur(x){
- x.style.borderColor = "initial";
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement