Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("input").focus(function(){
  8. $("span").css("display", "inline").fadeOut(2000);
  9. });
  10. });
  11. </script>
  12. <style>
  13. span {
  14. display: none;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19.  
  20. <input>
  21.  
  22. <span>Nice to meet you!</span>
  23. <p>Click in the input field to get focus.</p>
  24.  
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement