HighDots Forums  

code question: what is it?

Cascading Style Sheets Layout/presentation on the WWW (comp.infosystems.www.authoring.stylesheets)


Discuss code question: what is it? in the Cascading Style Sheets forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Mason C
 
Posts: n/a

Default code question: what is it? - 07-21-2008 , 02:40 AM







I'm a novice at this and would be forever grateful if someone would tell
me what this code accomplishes. It is repeated 149 times on the page.
This is the 97th: (I've removed some trivial code.)

<script>
function swapon97()
{
document.img97.src="img/navigr97.gif";
}
function swapoff97()
{
document.img97.src="img/navig97.gif";
}
</script>

<a href="page97.html" onclick="return true">

<img src="navig97.gif" /></a>

then <script> and repeat above with "98"


Thanks for any instruction or source,

Mason C


Reply With Quote
  #2  
Old   
Geoff Muldoon
 
Posts: n/a

Default Re: code question: what is it? - 07-21-2008 , 03:10 AM






Mason C says...
Quote:
I'm a novice at this and would be forever grateful if someone would tell
me what this code accomplishes. It is repeated 149 times on the page.
This is the 97th: (I've removed some trivial code.)

script
function swapon97()
{
document.img97.src="img/navigr97.gif";
}
function swapoff97()
{
document.img97.src="img/navig97.gif";
}
/script

a href="page97.html" onclick="return true"

img src="navig97.gif" /></a

then <script> and repeat above with "98"


Thanks for any instruction or source,
It's a bit of javascript which will when triggered (probably by another
bit of javascript) switch the source of each of a number (149?) of images
on the page from one value - img/navigr97.gif ('r' for red?)- to another -
img/navig97.gif (note no 'r' in the name).

From your description it's a shitty bit of coding.

Geoff M


Reply With Quote
Reply




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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.