E
erik
Is it posssible to inherit the previous pages (parent pages)
background image? Is there a script out there I could look at? Thanks
background image? Is there a script out there I could look at? Thanks
Grant Wagner said:The browser has no way of knowing what the background image of the
previous page was. If you want to use the same background image, you'll
have to set a cookie with the background image name and read it on each
page, or pass the image name around on the URL.
mike said:Grant Wagner <[email protected]> wrote in messageThe browser has no way of knowing what the background image of the
previous page was. If you want to use the same background image, you'll
have to set a cookie with the background image name and read it on each
page, or pass the image name around on the URL.
Not entirly true. I've got what the OP dscribes to work without
cookies or passing in the url.
I've only tested it in mozilla 1.4 and I wouldn't like to comment on
the 'goodness' of the method though
I found part of the answer here -
http://www.codebelly.com/javascript/backimagechange.html
If you use the [depricated] background attribute of the body tag to
specify the image you can change/reference it with javascript. (I
can't get it to work with body background images defined with css
though.)
In the opened window call the following line of javascript with an
onload on the body tag
document.body.background=opener.document.body.background
mike.
mike said:Grant Wagner said:The browser has no way of knowing what the background image of the
previous page was. If you want to use the same background image, you'll
have to set a cookie with the background image name and read it on each
page, or pass the image name around on the URL.
Not entirly true. I've got what the OP dscribes to work without
cookies or passing in the url.
I've only tested it in mozilla 1.4 and I wouldn't like to comment on
the 'goodness' of the method though
I found part of the answer here -
http://www.codebelly.com/javascript/backimagechange.html
If you use the [depricated] background attribute of the body tag to
specify the image you can change/reference it with javascript. (I
can't get it to work with body background images defined with css
though.)
In the opened window call the following line of javascript with an
onload on the body tag
document.body.background=opener.document.body.background
mike.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.