I'm looking for something along the lines of...
$(':input:not(readonly)') // all inputs which are not readonly
but struggling to find the syntax.
Any pointers? thanks
I'm looking for something along the lines of...
$(':input:not(readonly)') // all inputs which are not readonly
but struggling to find the syntax.
Any pointers? thanks
I recently did something similar like this:
I would like to add another answer that works for me, using context https://api.jquery.com/context/
This should work:
I suppose you are looking for something like the following:
Have a look at jQuery's various attribute-selectors.
would cover readonly, readonly="true" and readonly="readonly"