Using .not() and .first() @ same call
Hi all;
I have a a problem using .not concatenated w/ .first and would like some help if possible:
<div class="innovempty cloned"></div>
<div class="innovempty"></div>
<div class="innovempty"></div>
<div class="innovempty cloned"></div>
would like to get something like $('.innovempty:not(.cloned).first').remove();
the 1st innovempty which is not .cloned
is there someone which has a suggestion?
Thanks in advance!