Javascript examples for jQuery Method and Property:height
Set the width and height of a specified <div> element:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").width(500).height(500); });//w w w . j a v a 2s. c om }); </script> <style> #div1 { height: 100px; width: 300px; padding: 10px; margin: 3px; border: 1px solid blue; background-color: red; } </style> </head> <body> <div id="div1"></div> <br> <button>Resize div</button> </body> </html>