Users browsing this thread: 2 Guest(s)
JavaScript -> Auto-updating Image
#2
That script is actually pretty simple when you break it down.

All the code is doing is redirecting to an image located in the "http://thedilbertstore.com/images/periodic_content/dilbert/" directory and adding the filename based on the current date.
So long as the file names still follow the same pattern I think you should be able to remove the <img> tag from it and reference the javascript file as if it were an image, currently it's outputting html.
So uh, the last line would be;
Code:
document.write('http://thedilbertstore.com/images/periodic_content/dilbert/dt' + year + '' + month + '' + day + dayofweek + 'hct.jpg');
and you'd reference it as
Code:
[img]http://whatever.butt/yourcode.js[/img]

Personally I'd want to test that myself to be sure, I haven't worked much in Javascript so I might get getting wires crossed.
Assuming you've got it in a public folder I think it should work in dropbox, since I'm pretty sure javascript is run client-side and it's just spitting out a url.

Of course if anyone is more well versed in Javascript I'd listen to them if they say I'm talking garbage here.
B A N D C A M P - T W I T T E R - T U M B L R - Y O U T U B E - G 1 5
Call me aggressive, call me obscene,
but you've always called me sir when you've invaded my dreams.
Thanked by: puggsoy


Messages In This Thread
JavaScript -> Auto-updating Image - by puggsoy - 11-06-2013, 03:51 PM
RE: JavaScript -> Auto-updating Image - by PatientZero - 11-06-2013, 06:15 PM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-08-2013, 10:58 AM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-08-2013, 04:28 PM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-08-2013, 02:38 PM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-08-2013, 08:48 PM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-09-2013, 07:18 PM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-09-2013, 10:32 PM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-09-2013, 10:56 PM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-09-2013, 11:16 PM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-10-2013, 01:38 AM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-10-2013, 10:58 AM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-10-2013, 03:04 PM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-10-2013, 06:37 PM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-11-2013, 02:03 AM
RE: JavaScript -> Auto-updating Image - by Phaze - 11-11-2013, 07:16 PM

Forum Jump: