i'm trying to get a div which has "panel current" as classname. the problem is the space - how can i select it?
thx
|
|
Class names can't have spaces in them. What you have there is two classes:
This div has two classes: panel and current. That's easily selected:
That means select all divs that have class panel and class current. |
|||
|
|
OR
Use this if you need to match an element with an exact match of class names (including spaces) The other posters are right, the DiV you posted has two class names: 'panel' and 'current';
If you want to select them both, use This will also include elements like:
|
||||
|
|
|
|
|||
|
|
|
The div has two class names, one "panel" and the other "current". You can use $("div.panel") or $("div.current") to select it. |
|||
|
|