Advertisement
GamerBhai02

Program 14 Button Textarea Controls

Dec 5th, 2024 (edited)
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <script>
  5.         function displayText(){
  6.             const alertMsg = document.getElementById("text").value;
  7.             alert("Entered text is: "+alertMsg);
  8.         }
  9.         function clearText(){
  10.             document.getElementById("text").value = "";
  11.         }
  12.     </script>
  13. </head>
  14. <body>
  15.         <h1> Buttons and TextArea Controls </h1>
  16.         <textarea id="text" rows="4" cols="58" placeholder="Type here something....."></textarea><br>
  17.         <button onclick="displayText()">Submit</button>
  18.         <button onclick="clearText()">Clear</button>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement