Tagged Questions
0
votes
3answers
26 views
html5 validation regular expression
I only want alphanumeric, numbers, space, dash and underscore. I am using
[\w\s-_]*
But because I have allowed spaces, a space is allowed as input, in html5 how can i validate if only spaces are ...
-1
votes
1answer
84 views
Required attribute and validation groups
I have several textboxes on the form that are marked with required="required" attribute (html5).
There are two buttons. The first button should cause validation, the second should not.
...
0
votes
1answer
76 views
HTML5 valide re-entered values
I have just used the HTML5 pattern attribute for the first time on a registration form client-side validation. It is working well and I plan to use it for live code.
In my registration form I have a ...
-2
votes
1answer
31 views
HTML text input, no numeric
I have an HTML5 text field for given name (first name).
<input name="name" id="name" autocompletetype="given-name" type="text" alt="" maxlength="16" required/>
Some users put password here. ...
2
votes
1answer
49 views
Multiple backgrounds & :valid - shortest solution / DRY solution?
I have a form with some input-fields. These input fields have a gradient as background assigned, like so:
input {
background: #00b7ea;
background: ...
0
votes
3answers
253 views
HTML5 Chrome checkValidity onBlur
I'm trying to do a simple checkValidity of a numeric input field on blur, but can't get it to work properly. Does this work in Chrome yet? For instance:
<input onBlur="checkValidity()" ...
3
votes
1answer
259 views
Match a string but not a blank space using HTML5 input pattern
I'm using the HTML5 pattern attribute in an <input> to return a match for a specific string: 'felfogtam'
My current markup is:
<input type="text" class="input input-small" ...
1
vote
1answer
243 views
Is the inputmode attribute valid (in HTML5 forms) or not?
I am getting validation errors with the inputmode attribute on text areas and text fields. The validator tells me Attribute inputmode not allowed on element input at this point but the HTML5 spec ...
1
vote
2answers
295 views
Chrome HTML5 form validation issue
When you type 3.14 for example, and press enter - validation popup appear. As should be fixed number (by default step=1). But when you type some string, e.g. "hello" and press enter - form submit. ...
3
votes
1answer
202 views
Validate HTML5 number input with a step of 0.1
Trying to do server side validation (PHP), where there is the HTM5 number input:
<input ... min="1" max="20" step="0.1" />
The browser will allow you to enter a value such as "10.5", but how ...
0
votes
2answers
282 views
How do I test if HTML5 validation was triggered for a required field with Selenium?
Let say I have the following snippet of HTML5:
<form method="get" action="logginValidation.php">
<input type="text" required="" name="username">
<button class="btn" ...
0
votes
0answers
58 views
HTML5 validation is skipping
I am having a weird issue. I have an input field in a form:
<form id="frmAddAdvertiser" method="POST" action="" onsubmit="return false;">
<input name="firstname" id="firstname" ...
0
votes
2answers
1k views
check if input field is empty with html5 and javascript
How can i check if a html5 input field is empty? I am trying to override the native validation message given by using a required text input.
This is how my code looks now:
<script>
...
5
votes
2answers
631 views
Should I use ^ and $ in html5 input regex pattern validation?
I've seen mostly examples without the ^ (circumflex) and $ (currency or dollar) characters to mark the beginning an end of the string being matched. However, I did not find anything regarding this in ...
12
votes
7answers
15k views
HTML5: number input type that takes only integers?
I'm using the jQuery Tools Validator which implements HTML5 validations through jQuery. It's been working great so far except for one thing. In the HTML5 specification, the input type "number" can ...
4
votes
2answers
481 views
What is the easiest way to determine whether `<input type=“email”..` (for instance) is supported in current browser?
With HTML5, the following markup is just enough to get the browser handle input validation for one.
It will verify the input is matching an email address format as well as that it is actually ...
8
votes
2answers
2k views
How to programmatically display HTML5 client-side validation error bubbles?
I'm trying to use HTML5 client-side validation outside a form/submit context, but cannot see how to display the validation error bubbles. Consider the following:
<input type="text" id="input" ...
2
votes
3answers
2k views
How do I change the “not valid input” text of HTML5 forms
If the input field's type is email in an html5 form, and if someone does not input a valid email address, it will say Please enter an email address.
Is there a way to change that text without a ton ...
3
votes
2answers
4k views
How to clear, remove, or reset HTML5 form validation state after “setCustomValidity(”…“);”?
How to clear, remove, or reset HTML5 form validation state after setCustomValidity("...");?
Setting an empty string, setCustomValidity("");, in Firefox and Chrome closes the form validation error ...
1
vote
2answers
644 views
How to programmatically close an HTML5 form validation error message?
How to programmatically close an HTML5 form validation error message?
After a form validation error message pops up, how do I programmatically close or hide it?
I'm using Opera 11.51.
0
votes
1answer
974 views
HTML5 Input Validation images with CSS3
I am currently working on an HTML5 form and using CSS3 for the styling. I have added CSS for input:required and input:valid and input:invalid to make an image get shown inside the text box.
Both the ...
2
votes
3answers
440 views
Individual Input Validation on Blur
I'm trying to use HTML5 to validate a number input. I am using jQuery to create the element. How can I have the browser display the error message onBlur without having to click the submit button?
...
0
votes
3answers
560 views
HTML 5 required message being cropped
I am currently migrating a site to HTML 5 and taking advantage of the new input types and attributes - using JavaScript as a fallback when a type or attribute is not implemented. My issue is that when ...
3
votes
3answers
5k views
HTML5, how to force input pattern validation on value change?
I am trying to learn HTML5 and came across the following. I would like to use the "pattern" input keyword to validate the input as the user types it (e.g. validation after pressing tab or changing ...
2
votes
2answers
4k views
How to display HTML5 validation if inputElement.validity.valid == false?
So I have a form, but I don't need to be submitting the information to the server just yet... What I need, is to just run the fields through the HTML5 built-in validation conditions (such as email, ...
1
vote
2answers
2k views
How do you customize the error message generated by HTML5 by the simple_form gem? [duplicate]
Possible Duplicate:
HTML5 form required attribute. Set custom validation message?
Simple_form has an automatic error that is generated by html5. How do you customize the content of the ...
5
votes
1answer
575 views
Is there a Java implementation of the HTML5 input email validation?
I'd like to use the new <input type="email" /> element. I'd like to have Java code that implements the same validation on the server that happens in the browser.
The HTML5 spec defines email ...
