Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q957 Is there a background image property for the document object?

irt.org | Knowledge Base | JavaScript | Document | Q957 [ previous next ]

Q957 Is there a background image property for the document object?

Yes, but currently only in Internet Explorer 4+ and Netscape Navigator 6+ with:

<html>

<head>

<script language="JavaScript">
function getBackground() {
  if (document.body)
    alert(document.body.background);
}
//--></script>

</head>

<body onLoad="getBackground()" background="image.gif">

...

</body>

</html>

Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb and Michel Plungjan
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.