Is there a better way to do this jQuery selection:
$("p.DynFieldWrapper :input:not(:text):not(textarea)").focus(HideDynamicFormError).click(HideDynamicFormError);
$("p.DynFieldWrapper :text,p.DynFieldWrapper textarea").blur(HideDynamicFormError);
I am binding my function, HideDynamicFormError, to the blur event for textboxes and textareas and to the focus and click events of other form input elements.
This is working but I am still getting the hang of things in jQuery, and was wondering if there was a better way of doing this?