[jQuery] Is there a better way to do this selector?
Hi
I'm trying to just get the number of modified inputs that aren't
disabled. I'm using the moreSelectors plugin.
active_inputs_modified =
$("input:modified").not($("input[@disabled]")).length;
I can't figure out how to combine that into 1 jquery expression
without using the 'not' function.
Similarly how would one go about doing something like getting all
the :even span elements which are also :hidden in 1 expression?
Thanks!
azbok