JQuery div.height is wrong in Chrome to make all the divs same height - Javascript jQuery

Javascript examples for jQuery:Width Height

Description

JQuery div.height is wrong in Chrome to make all the divs same height

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-1.8.3.js"></script> 
      <script type="text/javascript">
    $(function(){// w  ww.j av  a  2  s  .com
jQuery(window).load(function($){
   console.log('test here');
});
    });

      </script> 
   </head> 
   <body>  
   </body>
</html>

Related Tutorials