I want to get the sum of the size of margin-top and height another level.
margin-top .nav1 is 30px and .main height is 28px
I am using this code:
$('.nav').css('margin-top').replace('px', '') + $('.main').outerHeight()
but the result of my sum is 3028
How can I sum these tow numbers?
jquery css margin height sum
Madajfy
source share