[jQuery] adding rule to selector syntax
Hello
I have a simple jquery selector:
$('[id^=total_item]')
I would like to add a rule so that the upper code would match all
elements that don't have 'locked' class (so that it wouldnt match
those with class='locked').
How should I add this rule to the selector?
Many thanks in advance!