How do you know if the current element is not the first-child?
It should work with $(this), for example:
$("li").click(function(e) {
if (/* $(this) is not the first-child */)
{
/* do something */
}
});
|
How do you know if the current element is not the first-child? It should work with
|
||||
|
|
|
You can do this just to test an element if it's the first child: |
|||||||||||||||||
|
|
You could simply ask for its
|
|||||||||||||
|
|
For all $('#thing li:not(:first-child)') |
|||
|
|
|
If you would like to select everything except the first child, this is how to do it:
|
|||
|
|
|
Also, you can check if
|
|||
|
|
|
Keep it simple, use the DOM
|
||||
|
|
|
|||||
|