Click to See Complete Forum and Search --> : Cannot load image onto another frame using netscape


bullzzz
08-18-2003, 01:27 AM
Hi,
I have a problem trying to load a thumbnail image from the menuFrame to the mainFrame. I don't have a problem doing that on IE but how to do it on mozilla?

My javascript is as follows:

function preview(picture) {
window.parent.bodyFrame.imgPreview.src=picture;
}

cheers.

Khalid Ali
08-18-2003, 10:37 AM
do u get any error in NS? if so please post that

pyro
08-18-2003, 10:40 AM
You might want to try

function preview(picture) {
document.parent.bodyFrame.imgPreview.src=picture;
}

bullzzz
08-25-2003, 10:00 PM
I didn't get any error from netscape. Neither did anything work. Thanks pyro, but that didn't seem to work in netscape too. :confused: