Hi this code does not run under ie7/ie8 for some reason.

$('#cnt').load('./tiles/pages/'+ $name +'.php #'+$lang, showNewContent());

It seems to have problems to retrieve the section in the php file with the id $lang. The code works in all other browsers, and it works in ie7/ie8 if I call it like that:

$('#cnt').load('./tiles/pages/'+ $name +'.php', showNewContent());

and I don't like that.

Any idea why ie7/ie8 behave this way? ok ie7 I know => it is crap :-)

For now the php file just contains plain html5 which looks like that:

<article id="de">
        <header>
            <h2>Your article heading</h2>
        <p>Lorem ipsum dolor sit amet.</p>
        </header>
        <h3>A smaller heading</h3>
            <p>Lorem ipsum dolor sit amet</p>   
        <h3>A smaller heading</h3>
            <p>Lorem ipsum dolor sit amet</p>
        <footer>
        <h3>About the author</h3>
            <p>Lorem ipsum dolor sit amet</p>
        </footer>
</article>
<article id="en">
        <header>
            <h2>Your article heading</h2>
        <p>Lorem ipsum dolor sit amet.</p>
        </header>
        <h3>A smaller heading</h3>
            <p>Lorem ipsum dolor sit amet</p>   
        <h3>A smaller heading</h3>
            <p>Lorem ipsum dolor sit amet</p>
        <footer>
        <h3>About the author</h3>
            <p>Lorem ipsum dolor sit amet</p>
        </footer>
</article>

UPDATE:

As it looks like, it is the HTML5 tags that throw it off??? I am using modernizr, anyone want to take a hit on that? In the dom only <article id="de" /> is loaded the rest is neglected.

link|improve this question

1  
Maybe remove the space between php and #? Just guessing anyway... I hate ie =( – Francisco Jun 16 '11 at 22:17
@Francisco, it's a start – Zlatev Jun 16 '11 at 22:35
1  
include the rest of your script, what does $name / $lang equal, is this php echoing javascript? – Louis Jun 17 '11 at 1:26
$lang will be either 'de' or 'en' in this scenario. $name will be the file name slug refering to a url, e.g 'home'. Thus it would try to load 'home.php #de' which should load the <article id='de'> as shown above. – mahatmanich Jun 17 '11 at 6:57
feedback

2 Answers

up vote 0 down vote accepted

Update 1

You said that calling the code without # works ok, so since with the load method and ID selector you are actually fetching all the document, but jQuery will only keep the code within the specified element ID, you could simply call the load method without an ID selector, then keep only the element you need and remove the rest yourself.


Maybe the space in the URL is the problem, could you try to escape it somewhat?

Like

$('#cnt').load('./tiles/pages/'+ $name +'.php%20#'+$lang, showNewContent());

or

$('#cnt').load('./tiles/pages/'+ $name +'.php%2520#'+$lang, showNewContent());
link|improve this answer
Hi Jose, it is not the space in the URL. As by api.jquery.com/load it should not be anyhow. I have notices that if I replace the html5 tags back to 'normal' div and p tags it works also in ie7 and ie8 – mahatmanich Jun 26 '11 at 13:42
I update my answer, I think you could just load the document without the selector and keeping only the element/s you want, removing the rest with .remove(), or copying the element you need somewhere, then use .empty() to clear all content and append the element you copied before. – Jose Faeti Jun 26 '11 at 14:29
yeah I could but that is a lot out of the way if it should work just as stated in the jquery docs. I get it to work without any html5 tags so I guess that'll do for me ... – mahatmanich Jun 26 '11 at 17:32
feedback

Probably too late, but did you try re-applying modernizr on your newly loaded html?

link|improve this answer
ya too late =) I think I used plain xhtml then =) but thanks for the answer anyhow =) – mahatmanich Nov 29 '11 at 10:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.