I\'m using the jQuery Validation plugin and want to disable the or element/container it creates to display the error \'message\'.
Basically, I want the input element wi
Possibly a far simpler and semantically preferable solution would be to use css
label.error {
position:absolute;
left:20000px;
top:0;
}
input.error {
border:red 1px;
}
No JS required, easier to manage and someone with a screen reader will actually have some indication that they have missed something