JQuery Auto Hight | Code For Developers

JQuery Auto Hight

jQuery height change after a specific time interval

With this code we will get a height of a div and use that height in another place. And the height value will change automatically based time intervale.

Custom.js
setInterval(function () {
   var topp = $('.header_area').outerHeight() - 50;
   console.log(topp);
           
   $('#header_paddig').css('height', topp);
}, 2000);
Previous Code

WordPress Related Post

Show related post on blog single page or any custo ...

Next Code

Sticky Menu Show when scrolling up

Header bar only show when scrolling up with simple ...

Leave a Reply

Your email address will not be published. Required fields are marked *

If you find it useful

Buy me a coffee

ACF

Elementor

JavaScript

jQuery

Others

PHP

WooCommerce

WordPress

Adding and Removing Class Based on Element Visibility in the Viewport

Sometimes we need to dynamically manage classes ba ...

Jquery Custom Tab

...

Add Classe when the item visible

Add class on scroll to viewport jquery code ...

Random slide order in slick sider

Change slick carousel slide order randomly ...

Jquery Replace specific text in all element

...

top