i want to append a style sheet(css) link to the head of an iframe using jquery . i tried with the following code but not working.
$(\'#tabsFrame\').contents(
I believe you can't manipulate the content of an iframe because of security. Having you be able to do such a thing would make cross-site-scripting too easy.
The iframe is totally seperate from the DOM of your page.
Also, java and javascript are two completely different things!
Follow the Link to see the difference here