My jquery selector ,
$($('ul *[data-date="abc"]'))
Retrieves following elements from html,
<li class="current week" data-wk="39" data-date="abc"></li>
<li class="day" data-date="abc"></li>
..
..
..
.
.
<li class="day" data-date="abc"></li>
But I dont want its first element. How to do that ?
What I have tried is ,
$($('ul *[data-date="abc"]:not(.current week)'))
But it is still returning all the results.