0

Here is what I have so far:

var head = $target.prop("iframe").toLowerCase().contents().find("head");
var css = '<style type="text/css">' +
          'MY CSS IS HERE' +
          '</style>';
jQuery(head).append(css);

Unfortunately, I have a couple issues:

1) I can't add jquery to the page via javascript (I tried but it's not working), so I need this converted to javascript.

2) I'm sure there is something wrong with the code. Please help me fix the errors.


NOTE:

I already tried everything here, but it does none of that is working especially because it's different than what I need (THERE IS NO ID OR CLASS NAME FOR THE IFRAME so everything on that question is irrelevant).

Community
  • 1
  • 1

1 Answers1

0

I think if you have iframe page under the same domain you schold try this:

$("iframe").contents().find('head').append('<style type="text/css">' +'MY CSS IS HERE' + '</style>')
arclite
  • 528
  • 1
  • 6
  • 23