[jQuery] multiple not() selection filters
I need to check for an element that is not disabled and not readonly,
but the not() filter does not seem to handle multiple selectors.
Any help with the syntax here?
$('textarea[id]:not(:disabled, :readonly)')
Thanks!