Let me start by saying im not 100% the way Im handling this is correct, but anyway..
I am loading HTML out of a file, into a string - and placing that string inside of a jquery object.
My HTML (example):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
...
<link href="template.css" rel="stylesheet" type="text/css" />
</head>
<body>
<img src="img.png"/>
...
</body>
</html>
The above is in a variable called htmlstr:
var htmlstr = theFunctionThatLoadsMyHTMLString();
$html = $(htmlstr);
Now, im going through the HTML and attempting to make some changes before I put it into an iframe.
This works perfectly fine for images:
$html.find("img").each(function(){
// do something
});
But, when I try to access the LINK tag (to change the css href) it doesn't find "link".
$html.find("link").each(function(){
// do something
});
To attempt to debug the problem, I wrote this code:
$html.find('*').each(function(index){
addline(index+': '+this.tagName+'');
});
It prints out the HTML tag found for each element (addline is a function that does this). This is what I get:
0: IMG
1: DIV
2: DIV
....
So it appears as if maybe its starting inside BODY for some reason, and ignoring the header?
What am I doing wrong here?
Im not gonna lie, Im not 100% sure how the $('code here') works in jQuery.. flying kind of blind.
.find('head')? – OhCaN Mar 29 '12 at 15:50htmlstr.replace(/([ #;&,.+*~\':"!^$[\]()=>|\/@])/g,'\\$1'), and it found the head element, but in return also had me end up with bad HTML because it was all filled with `\` – Applehat Mar 29 '12 at 16:03