I'm trying to make a fadeIn() and slideDown() in jquery, but it does not want to work in chrome. Here's the code
$(function (){
$('#wrap h1').hide().slideDown(3000)
$('.circles_1 img').hide().delay(3000).fadeIn(5000)
})
and here's the html code of it :
<section id="circles">
<figure class="circles_1"><a href="photoshop.html">image 1<img src="images/photoshop.png"/></a></figure>
<figure class="circles_1"><a href="illustrator.html">image 2<img src="images/illustrator.png"/></a></figure>
<figure class="circles_1"><a href="indesign.html">image 3<img src="images/indesign.png"/></a></figure>
<figure class="circles_1"><a href="websites.html">image 4<img src="images/websites.png"/></a></figure>
</section>