Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change margin-top with PURE Javascript [closed]

I wanted to change margin-top of a div which has margin-top:80px; by default. When people scroll the page down it should change its margin-top:40px . This has to be done in JS. I searched on web about this and all i could get is a tutorial on JQuery. Could any one help me with pure JS. I dont want JQuery or any other framework as it loads all code for this simple one.

Any help will be appreciated.

Thank You.

like image 813
PHP Newbie Avatar asked Jul 13 '26 07:07

PHP Newbie


1 Answers

document.getElementById('YouDiv').style.marginTop='40px';
#YouDiv {
  border:1px solid black;
}
<div>This is other Div</div>
<div id="YouDiv">This is YouDiv</div>

Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!