I am trying to have a little dynamics work in this website http://peps.sqps.nl
Everything seems to work well untill I test the website in IE, it just doesnt give any content back.
The js I use is as following:
$(document).ready(function(){
$('li.navItem a').click(function(){
var url = $(this).attr('href');
$('article').load(url + ' article', function(){
$('article').fadeTo(1200, 1);
});
return false;
});
});
the html of the dynamic part is as following, where the <article></article> part is supposed to act dynamicly.
<section id="content">
<div id="article">
<article>
content is in here
</article>
</div>
</section>
The solution given here on similar problems didnt fix the bug
Anyone has any ideas?
Thnx!
Your URL looks like it would be badly formed.
Is this what you really want?