[jQuery] Selecting readonly textboxes
Hello list,
Is it possible to select non-readonly textboxes with JQuery? I've
tried the following queries, non of which worked:
$("input:text[@readonly]")
$("input:text[@readonly='false']")
$("input:text[@readonly!='true']")
However it was possible to select readonly textboxes with the
following query:
$("input:text[@readonly]")