Hi all, I am having serious problems for getting the value of the href attribute as it appears in the source, in IE.
I load some content with the load function and this content has links, that are relative to the document of origin, after being loaded, the href attribute is changed into a wrong absolute value. The getAttribute("href", 2) still returns the absolute value, I think this is because IE changes the value after being loaded. Example: http://any.com/bla1/bla2/bla3/origin.html .... $(div#loader).load("another.html #something") .... http://any.com/bla1/bla2/another.html .... <div id="something"> ... <a href="../destiny.html"/> (Points correctly to http://any.com/bla1/destiny.html) </div> And after loading the content, I only am able to get, in IE, the value http://any.com/bla1/bla2/destiny.html Any suggestion?? Thanks in advance