Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Animate Div Height on Hover in jQuery</title> <style> .box{ width: 400px; height: 150px; background: #f0e68c; border: 1px solid #a29415; } </style> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script> $(document).ready(function(){ var boxHeight = $(".box").height(); $(".box").mouseenter(function(){ $(this).animate({ height: "300" }); }).mouseleave(function(){ $(this).animate({ height: boxHeight }); }); }); </script> </head> <body> <p><strong>Note:</strong> Place mouse pointer over the box to play the animation.</p> <div class="box"></div> </body> </html>