Date: 2005-12-02 02:31 am (UTC)From: [identity profile] eringurrl.livejournal.com
if you give the img tag an id it makes it easier to reference in javascript then you can just change the image's source attribute to like an image that is all white, put that into a loop...

function getObj(objId)
{	
    if (document.layers) 
        return document.layers[objId]; 
    if (document.getElementById) 
        return document.getElementById(objId); 
    if (document.all) 
        return document.all[objId]; 
    if (document[objId]) 
        return document[objId]; 
    return false;
}

var orgSource = "";
While True {
    orgSource = getObj("imageidname").src
    getObj("imageidname").src = "http://...";
    //some sorta wait timer
    getObj("imageidname").src = orgSource;
}


I'd imagine something to that effect.
This account has disabled anonymous posting.
If you don't have an account you can create one now.
HTML doesn't work in the subject.
More info about formatting

Profile

funeralcrasher: (Default)
funeralcrasher

June 2020

S M T W T F S
 123456
78910111213
141516 1718 1920
21222324252627
282930    

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Page generated Jun. 22nd, 2025 05:12 pm
Powered by Dreamwidth Studios