HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery hover() Method</h1> <p>Try to Hover me</p> <script> $(document).ready(function(){ $("p").hover(function(){ $(this).css("font-size","20px"); },function(){ $(this).css("font-size","16px"); }); }); </script> </body> </html>
OUTPUT
×

Save as Private