Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery append css link to iframe head

I'm trying to append a css file to an iframe that is created on a page from a global script. I can access part of it, but for some reason I can't append to the head. It's not throwing errors either, which is frustrating.

<script type="text/javascript">
$(document).ready(function() {                   
  $('#outline_text_ifr')
    .contents()
    .find('head')
    .append('<link type="text/css" rel="stylesheet" href="/include/outline.css" media="all" />');
});
</script>
like image 421
Micharch54 Avatar asked Jan 03 '11 18:01

Micharch54


1 Answers

var $head = $("#IFrame").contents().find("head"); 
var url = "Styles/styles.css";
$head.append($("<link/>", { rel: "stylesheet", href: url, type: "text/css" } ));

or

        $('#IFrame').contents().find('#div1').css({
            color: 'purple'
        });
like image 76
Rami Sarieddine Avatar answered Oct 23 '22 10:10

Rami Sarieddine