I want to give some styles using jquery. when I load some popup pages in my website.
I tried like this.
$("#myCountDiv").css({ "bottom":"298","position":"relative"});
$("#myInnerContainer").css({"margin-top:35"});
Both are not working. Please help me. How can I applay these styles to those divs?
Thanks
The first example isn’t working because “bottom” should be “298px” and the bottom example isn’t working because the property needs to be the key and “35” should be “35px”.
Examples:
Have a look at the more examples here.