I am trying to create a simple mouseover effect using a combination of mouseover, mouseout, addClass, and removeClass. Basically, when the user mouses over an element, I want to apply a different border (1px dashed gray). The initial state is "1px solid white". I have a class called "highlight" which simply has "border: 1px dashed gray" in it. I want to add that class onmouseover and remove it on onmouseout but I am unable to get the effect I want unless I use !important within the "highlight" class.
|
|
It sounds as though you've got the javascript working fine as is, but it's just a problem with the specificity of your CSS rules, which is why You just have to make your highlighted css rules more specific than the non-highlighted rules.
Edit with further explanation:
and you have this CSS:
Currently, all the list items in the Through whatever means you want (in your case a hover event in jQuery), you add a class to one of the items:
The HTML will now look something like this:
So far, your Javascript and HTML are working fine, but you don't see a grey border! The problem is your CSS. When the browser is trying to decide how to style the element, it looks at all the different selectors which target an element and the styles defined in those selectors. If there are two different selectors both defining the same style (in our case, the border colour is contested), then it has to decide which style to apply and which to ignore. It does this by means of what is known as "Specificity" - that is, how specific a selector is. As outlined in the HTML Dog article, it does this by assigning a value to each part of your selector, and the one with the highest score wins. The points are:
There are some more rules, eg: the keyword Going back to your problem, given the CSS we had before, we can see why it's still not got a grey border: #someItem ul li = id + element + element = 100 + 1 + 1 = 102 points .highlight = class = 10 points As mentioned earlier, the solution is to create a more specific selector: #someItem ul li.highlight = id + element + element + class = 100 + 1 + 1 + 10 = 112 points And to answer your question in the comments, you don't need to change any of your javascript or HTML for this to work. If you break down that selector, what it's saying is:
...and now, given the simple |
|||||||||||
|
|
From Jquery 1.3.3 you'll be able to do this a little simpler. There will be an enhanced version of .toggleClass() available which will be very powerful. If you don't need to break this out into a function then from 1.3.3 you'll be able to simply do:
If you're having to include !important then your highlight class may need to be more specific (see CSS Specificity). |
|||
|
|
|
I'm guessing you're using an inline style on the element for the initial style:
This will override the styles applied using a class... So instead of using inline styles, just use a different initial class to apply the initial styles:
|
|||||||
|
|
This is an example of a hover I have used:
you don't really have to break something this simple up into seperate functions. I suspect your issue might be with a conflict in the css - try just applying your highlight class by hardcodeing it , or on a click and see if it is really working. Hope that helps Jim |
|||
|
|
|
Have you considered a pure css approach? For example:
The Note: as someone commented, this doesn't work for non It also works for any element in IE8 and IE7 standards mode. I don't have IE6 to test with though. |
|||||||||||||
|
|
CSS:
JS:
i usually do it this way. (allows more options) |
|||||||||
|
|
Or you can just do it with simple CSS by using:
|
|||||
|