17
votes
5answers
302 views

Hide form controls when printing an HTML page with CSS

Certain HTML form elements have extra UI attached to them, like the up/down arrows on number. When printing the page however, those buttons are no longer needed, as the user can not interact with them ...
0
votes
0answers
58 views

Why does the html5 image placeholder act as a Reset button?

In testing out the various HTML5 input types (button, checkbox, color, date, datetime, datetimelocal, email, file, hidden, image, month, number, password, radio, range, reset, search, submit, tel, ...
0
votes
1answer
39 views

Why are my html5 labels not displaying in Live Web Preview?

I added this (taken straight from a book, "HTML5 24-Hour Trainer") to Default.aspx in an asp.net web project: <form method="post" action=""> <fieldset> ...
0
votes
0answers
27 views

Does HTML5 supports Zooming feature to view webview contents?

I am new to HTML5. I referred this link- Zooming in HTML5. I dont even have any idea about this. How to know and check that zooming is possible in HTML5 to view webview contents?? If iam wrong then ...
0
votes
1answer
53 views

Html5 form pattern latin characters vocals áéíóú Çç ü

i'm trying to validate input form html5, it works in my local web server, but when upload to hosting doesnt work in this characters: accented characters (vocals) like áéíóú. so i have tried changing ...
1
vote
3answers
68 views

Is there a way to have some text (not option) inside <select>?

We have a Select inside a form with say 4 options. My client wants to categorize options in a way so we can have some text on top related options. It will looks like: <select> Cat 01 ...
0
votes
1answer
388 views

JavaScript display html text input in html5 output tag

I am trying to make a little JavaScript web app that I can use to make templates for webpages I am going to make.(To speed up designing and stuff.) But when doing this I want to make it update live ...
0
votes
2answers
595 views

How can I put my form inside another form and use one submit button?

<form action="<?php $self ?>" method="post"> <h2>LundaBlogg</h2> <div class="fname"><label ...
1
vote
1answer
443 views

how to set attribute of html form from javascript

i want to change the attribute of a text element from required to not required. I am using javascript to do this. i am calling a function based on the input of the radio button and i am using html 5.. ...
0
votes
2answers
45 views

How to assign an arbitrary value to a variable when user clicks submit button?

A submit button allows to send it's name and value attributes along with the rest of request, when it is clicked, allowing to remember which one of submit buttons was used to send the form data. ...
4
votes
1answer
736 views

Detecting ipad quirk with showing the keyboard on focus

I wrote a function that will auto-advance a user to the next field of a form once they satisfy the requirements of that field. My problem is that when using this in an iPad, instead of focusing the ...
3
votes
3answers
2k views

Is it OK to have multiple HTML forms with the same name?

I have a valid reason for wanting to do this, but it's a long story so I'll forgot trying to explain why and just ask if it's OK to do. I have a page where I need to have multiple forms with the same ...
1
vote
1answer
368 views

HTML5 Input Type Number 16 Digits or More Chrome Replaces with Zeroes

Has anyone else experienced a problem with Chrome when using an input type of number and the number of digits exceeds 16? In my situation, anything after the 16th digit is being replaced with a zero ...
1
vote
6answers
312 views

getElementById does not post when name field is present in the file input

I'm writing a code to browse and upload a file in a single step. I have this code in place: <input type="file" id="image" style="display: none;"> <input type="submit" name="upload" ...
14
votes
2answers
3k views

html5 forms with polyfills - is it worth it?

Despite all of the buzz around html5 forms, it seems to me like you are creating extra work, in most scenarios, by going this route. Take, for example, a datepicker field. The native html5 ...
0
votes
1answer
284 views

what is the Chrome version support for pattern attribute?

I'm talking about the ability to provide a regular expression as the "pattern" attribute for an HTML textfield input. Like: <input type="text" pattern="[abc]{3}"/> According to ...
6
votes
3answers
7k views

What does it mean when the form action attribute is “#” (number/pound symbol/sign/character)?

What does it mean when the form action attribute is "#" (number/pound symbol/sign/character)? What happens when a form input's formaction attribute is set to "#"? Does this prevent the input from ...
8
votes
1answer
756 views

Which HTML5 forms javascript polyfill to has the broadest feature and browser reach?

The new forms attributes and tags in HTML5 are great. Unfortunately, there is only limited support for these in Chrome and Firefox, and essentially no support of these in IE9 and below. I have ...
37
votes
5answers
10k views

Can you have multiline HTML5 placeholder text in a <textarea>?

I have ghost text in textfields that disappear when you focus on them using HTML5's placeholder attribute: <input type="text" name="email" placeholder="Enter email"/> I want to use that same ...
0
votes
1answer
353 views

Is it safe to use the HTML5 button element for production websites?

Is it still worth using the traditional input element for buttons or can I start to use the HTML5 button right away? I have been able to verify that the button element works on the following, but are ...
11
votes
1answer
7k views

HTML Form: Select-Option vs Datalist-Option

I was wondering what the differences are between Select-Option and Datalist-Option. Is there any situation in which it would be better to use one or the other? An example of each follows: ...
4
votes
1answer
143 views

In HTML5, is the <form> element a sectioning element, like <section>?

In HTML5, some elements (e.g. <section>, <article>) create a new sectioning context in the document‘s outline, as per the outlining algorithm. This basically means that you can use ...