Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

more on iframes

Status
Not open for further replies.

latchmere

Technical User
Nov 20, 2002
2
0
0
GB
ment to say this is the code used in the main page displaying the iframe and images.
whats does the following line mean?
"thumbs.htm?folder="+folders[n]+"&num="+numbers[n];

thanks, any help appreciated.

function changeparty(n){
if (n!=0){
document.all.galnav.src="thumbs.htm?folder="+folders[n]+"&num="+numbers[n];
currentfolder=n;
changepic('01');
}
 
This line creates the url by concatening the page name ("thumbs.htm") and it's parameters (whose first one is preceded by "?" and others by "&"). Water is not bad as long as it stays out human body ;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top