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!

javascript call from jsp

Status
Not open for further replies.

raji96

Programmer
Aug 7, 2001
64
0
0
US
how to call this from a jsp

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/vehicle1.jpg'
theImages[1] = 'images/vehicle2.jpg'
theImages[2] = 'images/vehicle3.jpg'
theImages[3] = 'images/vehicle4.jpg'
theImages[4] = 'images/vehicle5.jpg'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
preBuffer = new Image()
preBuffer.src = theImages
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<td background=&quot;'+theImages[whichImage]+'&quot; width=&quot;516&quot; height=&quot;115&quot; rowspan=&quot;5&quot;>&nbsp;</td>');
}

// End -->
Thanks!
 
Sorry...

You can't do this. JSP runs on the web server - before the code is delivered to the browser.

Jeff
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top