I need to change the style of the tag, but i will be inside of an iframe and only want to change the main tag not the one inside the iframe.
What is the best way to target the highest level body tag on a page with Jquery?
I need to change the style of the tag, but i will be inside of an iframe and only want to change the main tag not the one inside the iframe.
What is the best way to target the highest level body tag on a page with Jquery?
Why complicate matters with jquery? You can refer to the main body with document.body
.
jQuery.parents() will travel multilevels until it finds the given filter, or reaches the top-most element.