View Single Post
Join Date: Aug 2006
Posts: 319
Reputation: Luckychap is on a distinguished road 
Solved Threads: 42
Luckychap's Avatar
Luckychap Luckychap is offline Offline
Posting Whiz

Re: Trying to change this JavaScript code, to work without External File..!! How?? plz

 
0
  #2
Dec 2nd, 2008
You do not have to post for these silly mistakes. Here is what is wrong:

You have put :
  1. setTimeout = ( "rotate()", 4*1000 );

Instead of this:

  1. setTimeout ( "rotate()", 4*1000 );

You should have copy/pasted that code
When you think you have done a lot, then be ready for YOUR downfall.
Reply With Quote