Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
- <script>
- $(document).ready(function(){
- $("button").hover(function(){
- $("p").hide();
- },
- function(){
- $("p").show();
- });
- });
- </script>
- </head>
- <body>
- <button>Hover on me</button>
- <p>Hello Saber</p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment