SCRUMble ! Hello Blog Readers! Thank you for all your support and encouragement. I have something exciting for you all. I have recently written and published a new book called 'SCRUMble !'. It is currently available on pothi store. It will be soon available on Amazon and Flipkart as well. Please get your copy and do let me know your reviews. -Abhishek Sathe SCRUMble ! Written and Published by: Abhishek Sathe Distributed by: pothi.com Order your copy now: https://store.pothi.com/book/abhishek-sathe-scrumble/ Coming soon on Amazon and Flipkart About the book: Scrum is a framework for solving complex problems largely adapted by Software Development field. There are multiple ag...
HTML events could be any of but not limited to the following: -when a user clicks the mouse -when a web page has loaded -when an image has been loaded -when the mouse moves over an element -when an input is changed -when an HTML form is submitted -when a user strokes a key We can respond to these events using JavaScript as follows: Example-onchange event <!DOCTYPE html> <html> <head> <script> function fun( ) { var x=document. getElementById("fname"); x.value=x.value.toUpperCase( ); } </script> </head> <body> Enter your name: <input type="text" id="fname" onchange="fun( )"> </body> </html>