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 am used to append data to an iframe by using this line of code
$('body', window.frames[target].document).append(data);
In your case, this line would look like this
$('head', window.frames['tabsFrame'].document).append(cssLink);
EDIT:
Add to the iframe and change your var cssLink to
cssLink = '