Witam, mam nastepujący problem z dynamicznym załadowaniem treśi do poszczególnych zakładek. Skrypt działa pod firefoxem i pod ie, natomiast chrome i opera nie wyświetlają zawartości.
Przedstawiam kod html
<!DOCTYPE html>
<link rel="stylesheet" type="text/css" href="style.css"> <link href='http://fonts.googleapis.com/css?family=Oxygen&subset=latin,latin-ext' rel='stylesheet' type='text/css'> <!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<header id="top"> <a href="index.html"><img src="images/komfordbud_04.jpg" alt="" width="272" height="113" style="float:left;"></a> <nav id="gorne">
<li><a class="menu" href="index.html">Strona główna
</a></li> <li><a class="menu" href="onas.html">O nas
</a></li> <li><a class="menu" href="oferta.html">Oferta
</a></li> <li><a class="menu" href="galeria.html">Galeria
</a></li> <li><a class="menu" href="kontakt.html">Kontakt
</a></li> </nav>
</header>
<section id="fla">
<img src="images/komfordbud_06.jpg" alt="" width="950" height="284"> </section>
<img id="corner1" src="images/komfordbud_11.jpg" alt="" width="411" height="120"> <img id="corner2" src="images/komfordbud_14.jpg" alt="" width="411" height="120"> <img id="corner3" src="images/komfordbud_16.jpg" alt="" width="411" height="120"> dfgdfg
a niżej jquery
$(document).ready(function(){
$('#content_area').load($('.menu_top:first').attr('href'));
$('.menu_top').click(function(){
var href = $(this).attr('href');
$('#content_area').hide().load(href).fadeIn('normal');
return false;
});})
Prosze o pomoc