I’m doing some form error handling/manipulation and I have the need to remove an error div that is before the input that is being validated…
HTML:
<p><div class="textError"></div><input type="text" name="someInputField" /></p>
I’d like to remove the div.textError if the input field is validated. I tried this…
$(this).before('<div class="textError"></div>').remove('<div class="textError"></div>');
and no dice. any help would be greatly appreciated
The
beforemethod adds something. To get a relative use theprevmethod. So something like this: