I'm working with a styled form, combining a number of jQuery plugins to help style form elements such as <select> and <input type="checkbox" />. These plugins hide the original form input and replace them with a styleable set of alternative HTML elements (<div>, <a>, <ul>, etc.). The only issue is they don't seem to handle the [required] attribute and apply the browsers' (Firefox, Chrome) box-shadow effects if the user attempts to submit the form without filling the required fields. Is there a simple way I can get those [required] attributes to translate onto the replacement elements? I would just extend the plugins and have them copy the [required] attribute to the replacement element, but I doubt that <div> tags support [required]. I've looked around on the Internets, but haven't found much in the way of helpful guides. Is there a workaround I'm missing? I just can't think of how to do it.
I suppose I could use full-fledged client-side validation, but I'm trying to keep the jQuery/JavaScript intervention to a minimum. If there isn't a good way to do this, I'll just go use a form validation plugin or something. For now, just for the sake of style consistency, I've disabled all the box-shadow effects with some CSS:
input:invalid, input:required,
textarea:invalid, textarea:required,
select:invalid, select:required {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-box-shadow: none;
}
input, you could useinput:required + .newElementClass(or something similar) to match it instead. – bfrohs Jun 26 '12 at 17:15input:required + .newClasshelps the browser know to highlight them red on an incomplete form submission attempt, though. Are you just suggesting a jQuery selector to target them? – Adrian Jun 26 '12 at 17:18input:requiredis a selector used to style a form element that is required, and blank. Assuming the form is updated on keystroke (which in many cases is not true, again, test), then you would be able to highlight fields that have not been filled out. So,input:requiredis equivalent toinput:required + .someElementClassif<p class="someElementClass">...</p>follows theinputelement and you're trying to stylep.someElementClass. – bfrohs Jun 26 '12 at 18:01.on("invalid")handler to.effect("highlight, {color:"#FFAAAA"},3000)highlight their puppet replacements, which seems to work great. I did not know the "invalid" event existed. Code in next comment (too long). – Adrian Jun 26 '12 at 19:39$("input[required],select[required],textarea[required]").on("invalid",function(){$(this).parent().effect("highlight",{color:"#FFAAAA"},3000);});It's not great,but it works, because I've set up my form in a table due to the tabular nature of the data I'm working with. – Adrian Jun 26 '12 at 19:41