Current location: Hot Scripts Forums » General Web Coding » JavaScript » Make rotating gifs clickable


Make rotating gifs clickable

Reply
  #1 (permalink)  
Old 01-20-05, 06:00 AM
tacuit tacuit is offline
Newbie Coder
 
Join Date: Dec 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Make rotating gifs clickable

Hi All,

Here is the situation. I have adverts that rotate on an hourly basis. I want to be able to click on the gif appearing and go to the advertisers site.

Here is the code that gets the gifs then displays the appropriate one depending on the hour of the day:

var layout = new Array;
layout[0] = "http://www.blabla/advertisers/bla/bla1.gif";
layout[1] = "http://www.blabla/advertisers/bla/bla2.gif";
var digital = new Date();
var l = digital.getHours(24) % layout.length;

document.write("<img src=" + layout[l] + ">");


Ideas??

Thanks!

tacuit
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 01-20-05, 10:28 AM
TwoD TwoD is offline
Community VIP
 
Join Date: Sep 2003
Location: 404
Posts: 1,813
Thanks: 0
Thanked 0 Times in 0 Posts
Code:
var layout = new Array();
var urls = new Array();
layout[0] = "http://www.blabla/advertisers/bla/bla1.gif";
url[0] = "http://www.blabla/advertisers/bla/index.htm"
layout[1] = "http://www.blabla/advertisers/bla/bla2.gif";
url[1] = "http://www.blabla/advertisers/bla/index.htm"
var digital = new Date();
var l = digital.getHours(24) % layout.length;

document.write("<img src=" + layout[l] + " onclick=\"window.open('"+url[l]+"')\">");
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #3 (permalink)  
Old 01-20-05, 10:50 AM
tacuit tacuit is offline
Newbie Coder
 
Join Date: Dec 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks TwoD

I tried various syntax to get this to work... I still have problems when combining attributes in tags. Solutions come with experience huh

Cheers,

tacuit
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


All times are GMT -5. The time now is 01:58 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.