- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to get the height of a div element using jQuery?
To get the height of a div element, use the height() method in jQuery.
Example
You can try to run the following code to get the height of a div element using jQuery:
<!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(){ alert("Height of div element: " + $("div").height()); }); }); </script> </head> <body> <div style="height:200px;width:450px;padding:20px;margin:1px;border:1px solid red; background-color:gray;"></div><br> <button>Get Height of div</button> </body> </html>
- Related Articles
- How to get the width of a div element using jQuery?
- How to get the height of an element using jQuery?
- How to get innerHTML of a div tag using jQuery?
- How to get the value of div content using jQuery?
- How to wrap tables with div element using jQuery?
- How to scroll to element in horizontal div using jQuery?
- How to create a div element in jQuery?
- How to get the width of an element using jQuery?
- How to animate div width and height on mouse hover using jQuery?
- How to copy the content of a div into another div using jQuery?
- How to duplicate a div using jQuery?
- How to set width and height of an element using jQuery?
- How to replace innerHTML of a div using jQuery?
- How to get HTML content of an element using jQuery?
- How to toggle a div visibility using jQuery?

Advertisements