i'm using this script to load content of a div, inside another div, but the background color propertie of this div isn't load.
Here my code:
My menu:
<nav class="navegacao">
<ul id="menu">
<li><a href="#home">Home</a></li>
<li><a href="#empresa">Empresa</a></li>
<li><a href="#gallery_wrapper">Coleções</a></li>
<li><a href="#encotre">Encontre</a></li>
<li><a href="#diferenciais">Diferenciais</a></li>
<li><a href="#marketing">Marketing</a></li>
</ul>
</nav>
Here my content div recipiente:
<div class="wrapper">
<!--content-->
<section id="content_wrapper">
<div id="content">
<div id="splash"></div>
</div>
</section>
<!--content end-->
</div>
Here my hidden div:
<div id="home">TESTE</div>
Here my CSS:
#content_wrapper > #content {
padding: 48px 78px 30px 78px;
margin: 135px 0 0 0;
position: absolute;
height: 372px;
width: 791px;
/*background:#fff;*/
border-radius: 10px;
overflow: hidden;
}
#home{
width:500;
height:500px;
background:#FFCC00;
display:none;
}
And here my Swap content code:
$(function() {
$('#menu a').click(function(e) {
e.preventDefault();
var h = $(this).attr('href');
$("#content").fadeOut("slow", function() {
$(this).html($(h).html()).fadeIn("slow");
});
//alert(h);
});
});
How to make this working?
OBS: Here is the working link with the problem: http://www.alsite.com.br/sapatoterapia/
$(h).html()and noth.html()– gorelative Jun 19 '12 at 17:56his just the String of thehref– idrumgood Jun 19 '12 at 17:57