Javascript examples for jQuery:Tag Traversing
Find the size of a div in javascript
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.js"></script> <script type="text/javascript"> $(function(){// w w w . j a v a 2 s. co m console.log($(".container").height()) console.log($(".container").width()) }); </script> </head> <body> <div class="container"> MyContent <br> <br> </div> </body> </html>