Reply
Change Div Background Image
Old 03-19-2008, 04:39 PM Change Div Background Image
angele803's Avatar
Perfectly Imperfect

Posts: 1,485
Name: Stephanie
Location: Oklahoma
I have a "show/hide div" function I have been working on. Everything is working well, except for the background image of the container div. I need this background image to change depending on the link a user clicks on.
So far I have this:
Code:
document.getElementById('cities_popup_container').style.backgroundImage = "url(images/locations_popup_box_oklahoma.png)" ;
I have a variable set up called "state". It value changes depending on what state someone clicks on. I need a way to change the "oklahoma" in my example above to be the value of the variable "state". I am sure this must be an easy fix, but I can't get it to work.

Thanks for any help!!
angele803 is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
     
Old 03-20-2008, 10:21 AM Re: Change Div Background Image
chrishirst's Avatar
Super Moderator

Posts: 11,894
Location: Blackpool. UK
Code:
function setBackground(state) {
document.getElementById('cities_popup_container').style.backgroundImage = "url(images/locations_popup_box_" + state + ".png)" ;
}

to use;

setBackground("state_name")
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
Indifference will be the downfall of mankind, but who cares?
Code Samples | People Counting System
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 03-21-2008, 11:43 AM Re: Change Div Background Image
angele803's Avatar
Perfectly Imperfect

Posts: 1,485
Name: Stephanie
Location: Oklahoma
Thank you!!!

I knew it wasn't something too difficult, but I couldn't get it right.
angele803 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Change Div Background Image
 

Thread Tools

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.12850 seconds with 13 queries