Top "Html-input" questions

The input element represents a typed data field, usually with a form control to allow the user to edit the data.

how to POST/Submit an Input Checkbox that is disabled?

I have a checkbox that, given certain conditions, needs to be disabled. Turns out HTTP doesn't post disabled inputs. How …

html forms html-input
How do I stop Chrome from yellowing my site's input boxes?

Among other text and visual aids on a form submission, post-validation, I'm coloring my input boxes red to signify the …

css validation google-chrome html-input
Setting focus to a textbox when a function is called

I currently have a textbox in my aspx: <input type="text" id="myTextbox" value="" /> I was wondering if …

javascript focus html-input
How to force Razor to make Editorfor to input number type for float variable?

Here is my code in MVC 5: @Html.EditorFor(model => model.myfloatvalue, new { @type = "number", @min = "0", @step = "0.01", @value = "0" }) And here …

asp.net-mvc razor html-input editorformodel
Conditionally make input field readonly in Angular 2 or 4: Advice + Best/which way to do it

I was attempting to answer someone elses question. And in doing so realised there was quite a bit of uncertainty …

angular readonly attr html-input
Input text field with only bottom border

How do I style the text input field to make it only have a border-bottom like this one? Expected Text …

html css border html-input
How to set minimum length of password

I am currently working on a html form. How do I set the minimum length of the password to 8 so …

html forms html-input
Why is HTML5 input type datetime removed from browsers already supporting it?

I was wondering why all browsers, like Chrome versions higher than 26, which had support in the past for the input …

html datetime html-input browser-support
ASP.NET MVC HTML helper methods for new HTML5 input types

HTML5 appears to support a new range of input fields for things such as: Numbers Email addresses Colors URLs Numeric …

.net asp.net-mvc html html-helper html-input
Event fired when clearing text input on IE10 with clear icon

On chrome, the "search" event is fired on search inputs when user clicks the clear button. Is there a way …

javascript events internet-explorer-10 html-input