I have multiple form input elements. I would like to add a pattern
attribute and a title
attribute to each one, but rather than do so manually, I want to dynamically add the same pattern
and title
to each form input using JavaScript/jQuery.
This is what the form input fields look like now:
<input type="text" class="form-control" id="paycheck" />
<input type="text" class="form-control" id="investments" />
<input type="text" class="form-control" id="otherIne" />
As an end result I would like each form input to look like the following:
<input pattern="\d*\.?\d*" title="blah blah blah" type="text" class="form-control" id="paycheck" />
etc...
As examples, I've tried the following for the pattern attribute, but none of them work:
$( "input" ).attr("pattern", '\d*\.?\d*');
$( "input" ).attr("pattern", \d*\.?\d* );
$( ".formClass input" ).attr("pattern", '\d*\.?\d*');
$( "input" ).prop("pattern", '\d*\.?\d*');
$( "input" ).prop("pattern", \d*\.?\d* );
$( ".formClass input" ).prop("pattern", '\d*\.?\d*');
...imagine something similar for the title attribute...
I have multiple form input elements. I would like to add a pattern
attribute and a title
attribute to each one, but rather than do so manually, I want to dynamically add the same pattern
and title
to each form input using JavaScript/jQuery.
This is what the form input fields look like now:
<input type="text" class="form-control" id="paycheck" />
<input type="text" class="form-control" id="investments" />
<input type="text" class="form-control" id="otherIne" />
As an end result I would like each form input to look like the following:
<input pattern="\d*\.?\d*" title="blah blah blah" type="text" class="form-control" id="paycheck" />
etc...
As examples, I've tried the following for the pattern attribute, but none of them work:
$( "input" ).attr("pattern", '\d*\.?\d*');
$( "input" ).attr("pattern", \d*\.?\d* );
$( ".formClass input" ).attr("pattern", '\d*\.?\d*');
$( "input" ).prop("pattern", '\d*\.?\d*');
$( "input" ).prop("pattern", \d*\.?\d* );
$( ".formClass input" ).prop("pattern", '\d*\.?\d*');
...imagine something similar for the title attribute...
Share
Improve this question
asked Dec 7, 2013 at 22:24
neuquenneuquen
4,18916 gold badges63 silver badges80 bronze badges
9
- 2 Seems to work perfectly fine for me -> jsfiddle/b8RmX – adeneo Commented Dec 7, 2013 at 22:27
- hmm, you're right... that's odd... – neuquen Commented Dec 7, 2013 at 22:29
- Of course, a pattern is really only useful for required elements in a form that is validated. – adeneo Commented Dec 7, 2013 at 22:29
- Do the elements need to be required? – neuquen Commented Dec 7, 2013 at 22:31
-
add the pattern attr to your initial elements. Other wise .attr will not add the attribute itself.
set one or more attributes for every matched element.
. Just leave the attr blank likepattern=""
on the input elements. – Vigs Commented Dec 7, 2013 at 22:32
1 Answer
Reset to default 8In the end, I found that the syntax was correct. There was an error somewhere else in the code preventing that statement from being run. Just goes to show that you should always make sure everything is good elsewhere in your code first.
However, I did learn a few things from this which I will note for others:
- The jQuery
.attr()
function will dynamically add any attribute you specify, so you don't need to putpattern=""
in your form elements first in order for the value to be added or changed. - Of important note, if you are going to dynamically add a regex using jQuery, YOU NEED TO ESCAPE certain characters.
The regex was originally \d*\.?\d*
but in the DOM it was showing up as d*.?d*
so when sending the regex through jQuery I escaped the backslashes like so: \\d*\\.?\\d*
.
- Finally, I did not have to make my fields required for the regex to work. The HMTL5 validation only threw an error for me if I included incorrect text in the field, and when it threw an error, the form was not submitted. If I left the fields empty or put correct text in the fields, then no error was thrown. I'm up for an explanation if I'm wrong.