top of page

Equalize Div with Jquery

  • Writer: سُلَيْمَان بْن دَاوُوْد
    سُلَيْمَان بْن دَاوُوْد
  • Jul 30, 2020
  • 1 min read

Updated: Aug 2, 2020


  var maxHeight = 0;

  jQuery(".wprevpro_t1_DIV_2").each(function(){
     if (jQuery(this).height() > maxHeight) { maxHeight = jQuery(this).height(); }
  });

  jQuery(".wprevpro_t1_DIV_2").height(maxHeight);


Recent Posts

See All
Google ReCAPTCHA with AJAX

This is how you can pass on AJAX .js var userdata = { 'action' : 'signin_member', 'username' : jQuery('#user_name').val(), 'password' :...

 
 
 
Self Invoking Function jQuery

The function starts with (function ($) { and you can use your own code inside it (function ($) { jQuery(document).ready(function () {...

 
 
 
Smooth Scroll In JS and jQuery

jQuery(document).ready(function () { jQuery('.processreachfind').click(function(e){ e.preventDefault(); jQuery('html, body').animate({...

 
 
 

Comments


© 2020 by syednazrulhassan

bottom of page