Hello,
here is what i want to do. i would like to load a random cursor on my webpage when the page is reloaded. how can the following statement be used to randomly select a cursor:
element.style.cursor = 'url(' + cursor1 + ')';
where cursor1 is the url/name of the location and name of the cursor.
this is what i am using now for my cursor statement:
<style type="text/css"> body { cursor: url('graphics/cursor/romantic_1.cur'); } a { cursor: url('graphics/cursor/bible_1.cur'); }</style>
how can i change the above statement to reflect the samething, but at random?


