Hi,
I have a code snippet that goes like this:
$('#content').css('padding-top', heightTwo + 44 + 'px');
heightTwo is always changing. When it has the value 200 for example, the padding top gets the value 20044. I want it to be 244 but don't know how to write it. What is the correct syntax?
Thanks