DHTML Forum  

Go Back   DHTML Forum > dhtmlcentral.com > DHTML Scripts
FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 05.11.2006, 17:52
shivboy shivboy is offline
Erfahrener Benutzer
 
Join Date: 13.06.2001
Location: India
Posts: 125
Default

Hi,

I've been trying to change the background image of a layer using JS, but in vain. The code that I am using is as follows:
[code:4fjv03sbmn]
CSS

<style>
.bannerDiv {top: 5px; left: 2px; position: absolute;}
</style>

JavaScript

function init()
{
document.getElementById('bannerDiv').style.backgro undImage = 'url("abc.jpg")';
}

HTML

<body onload="init()">

<div id="bannerDiv" class="bannerDiv"></div>

</body>

[/code:4fjv03sbmn]

There is no error generated, but the image does not show in the layer also. Where am I going wrong? Please help.

Peace,

Shivboy


[code:4fjv03sbmn]Just <code> it! [/code:4fjv03sbmn]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 16.11.2006, 02:35
thechasboi thechasboi is offline
Neuer Benutzer
 
Join Date: 16.11.2006
Location: USA
Posts: 8
Default

CSS

<style>
.bannerDiv {top: 5px; left: 2px; position: absolute;}
</style>

JavaScript

function init()
{
document.getElementById('bannerDiv').style.backgro und = 'url("abc.jpg");
}

HTML

<body>

<div id="bannerDiv" class="bannerDiv"></div>
<script>
window.onload=function () {init();}
</script>
</body>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 31.05.2007, 14:56
Crazy Media Crazy Media is offline
Neuer Benutzer
 
Join Date: 28.05.2007
Posts: 3
Default

Try this:

HTML Code:
<style>
#bannerDiv {
top: 5px; 
left: 2px; 
width: 100px;
position: absolute;
}
</style>

JavaScript

function init()
{
document.getElementById('bannerDiv').style.background = 'url("abc.jpg");
}



<body>

<div id="bannerDiv"></div>
<script>
window.onload=function () {
    init();
}
</script>
</body> 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

All times are GMT +2. The time now is 07:45.


Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.