Jump to content

Changing on selection CSS element


jonnystudent

Recommended Posts

I know there is a simple way to do this but I can't seem to find it.  I have a drop down box, which has a list.  One you hover your mouse over any one of the items on the list, it's encircled by a border.  This is great.

 

What I want is for when a user selects an item from this list.  It will automatically change the background colour to #ddd.

 

If the user selects another item from the list, it will change that items background and the other item will have reverted back to it's white background.

 

So, I have a class called 'hi'.

 

My CSS is like so:

 

                    #changer a{
                        padding:3px;
                        border: solid 1px #fff;    
                    }
                    #changer a.hi{
                        background:#ddd;
                    }
                    #changer a:hover{
                        border: solid 1px #ddd;
                        text-decoration:none;
                    }

 

How would I change the element on selection using javascript or jquery.

 

Any help would be mostly appreciated.

 

Cheers,

 

Jonny

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.