Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The problem I am having is that it just shows 2-3 images quickly and then stops sliding through images, it just stops at one pic. Please help me figure out what is wrong with my code below: HTML

<script type="text/javascript">
jQuery("#slideshow > div:gt(0)").hide();

setInterval(function() {
  jQuery('#slideshow > div:first')
    .fadeOut(1000)
    .next()
    .fadeIn(1000)
    .end()
    .appendTo('#slideshow');
},  3000);
</script>
<LINK REL=StyleSheet HREF="slideshow.css" TYPE="text/css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>



<body>
<div id="slideshow" style="align:center;">

   <div>
     <img src="htc-touch-diamond-versus-iphone-3g.jpg" width="800px" height="400px">
   </div>

   <div>
     <img src="iphone_ipad.jpg" width="800px" height="400px">
   </div>

<div>
     <img src="iphone-3gs.jpg" width="800px" height="400px">
   </div>


<div>
     <img src="iphone3gs_3up.jpg" width="800px" height="400px">
   </div>

<div>
     <img src="iphone-4g-mockup-von-rino0815.jpg" width="800px" height="400px">
   </div>

<div>
     <img src="iphone-water1.jpg" width="800px" height="400px">
   </div>

<div>
     <img src="Mobiles-iPhone-Repair.jpg" width="800px" height="400px">
   </div>

<div>
     <img src="steve-jobs-holding-iphone.jpeg" width="800px" height="400px">
   </div>

<div>
     <img src="iphone-3g-preview.png" width="800px" height="400px">
   </div>

<div>
     <img src="iphone-sparks.png" width="800px" height="400px">
   </div>




</div>
</body>

slideshow.css

#slideshow { 
    margin: 50px auto; 
    position: relative; 
    width: 800px; 
    height: 400px; 
    padding: 10px; 
    box-shadow: 0 0 20px rgba(0,0,0,0.4); 
}

#slideshow > div { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    right: 10px; 
    bottom: 10px; 
}

EDIT1

I placed my jquery code in an external js file and I am referring to that file in my html like this

<LINK REL=StyleSheet HREF="slideshow.css" TYPE="text/css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<SCRIPT LANGUAGE="JavaScript" src="slideshow.js">
</SCRIPT>

<div id="slideshow" style="align:center;">

   <div>
     <img src="htc-touch-diamond-versus-iphone-3g.jpg" width="800px" height="400px">
   </div>

It is still not working and showing this error now...

("#slideshow > div:gt(0)").hide() doesn't exist

and this is my new js file:-

$(document).ready(function(){

("#slideshow > div:gt(0)").hide();

setInterval(function() { jQuery('#slideshow > div:first') .fadeOut(1000) .next() .fadeIn(1000) .end() .appendTo('#slideshow'); }, 3000); });

It sometimes also give a reference error on $ saying "$ not defined"

Edit -2

@Zahid..I have pasted all of my code here.. that's all I have.. these 3 files ie for hTML, css and js.

Where am I going wrong? Which statements need to come after what? I am clueless. Can someone please help me here?? I would be very grateful!

share|improve this question
This shows that your jquery files are not loading properly or you've write this piece of code before the jQuery load statement. – Zahid Riaz Aug 2 '12 at 9:12

2 Answers

up vote 1 down vote accepted

I solved the problem. It was with js file. Here's the code.

$(document).ready(function(){
  $("#slideshow > div:gt(0)").hide();
  setInterval(function() {
    $("#slideshow > div:first")
      .fadeOut(1000)
      .next()
      .fadeIn(1000)
      .end()
      .appendTo("#slideshow");
  },3000);
});
share|improve this answer

This happens because you are not using callbacks. Each statement executed asynchronously. Place your code in callbacks

share|improve this answer
How to do that? :/ I am new to all this. Can you please help? – Serenity Aug 2 '12 at 7:35
jsfiddle.net/n7tn3 You example code is working fine. check this fiddle – Zahid Riaz Aug 2 '12 at 7:40
You need to include the javascript code in the document.ready function. or window.load function. it works like charm – Zahid Riaz Aug 2 '12 at 7:43
still not working for me..at my end it is showing this error now..("#slideshow > div:gt(0)").hide(); doesnt exist – Serenity Aug 2 '12 at 8:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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