Advertisement
brandblox

WebLab-3.2-(15/10/24)

Oct 15th, 2024 (edited)
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Blur Event with jQuery</title>
  7.     <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  8. </head>
  9. <body>
  10.     <form>
  11.         <input id="field1" type="text" value="Field 1">
  12.         <input id="field2" type="text" value="Field 2">
  13.     </form>
  14.  
  15.     <script>
  16.         $(document).ready(function() {
  17.             $('#field1').blur(function() {
  18.                 alert('Field 1 lost focus!');
  19.             });
  20.         });
  21.     </script>
  22. </body>
  23. </html>
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement