Questions tagged [html-input]

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

The input tag in HTML specifies an input field where the user can enter data.

<input> elements are used within a <form> element to declare input controls that allow users to input data.

An input field can vary in many ways, depending on the type attribute.

Tips and Notes

Note: The <input> element is empty, it contains attributes only and no closing </input> tag.

Tip: Use the <label> element to define labels for <input> elements.

757 questions
-3
votes
3 answers

PHP: A HTML hidden input value generates an error upon querying mysql

I'm working on a webpage where I allow users to edit their car information. In the mainlining, there is an edit button (input - type text with a hidden key value) where it takes the user to this "edit car info" page. Initially, once the page is…
lll
  • 1
  • 6
-3
votes
1 answer

How does one handle a backspace event with JavaScript on an empty HTML input?

How is it possible to and what is best practice for listening and handling an event using Javascript which shall be triggered by pressing backspace on an which also is triggered when the inputs value is empty and was empty…
loresIpsos
  • 327
  • 1
  • 2
  • 12
-3
votes
1 answer

Run the javascript embedded within page upon onClick

Sorry if this question sounds pretty stupid; My situation is that I have three input sliders in my HTML; then, within the tag, after the inputs, I have some JavaScript accessing the data. The unfortunate part is that I want the embedded…
adrian
  • 1,439
  • 1
  • 15
  • 23
-3
votes
2 answers

Chrome uploading image no longer works; other browsers are fine

We recently implemented the ability of our members to upload an image. It has worked fine for several months. Recently it has stopped working in Chrome, but continues to work in Firefox, Safari, and Internet Explorer. The error message that Chrome…
Jeffrey Simon
  • 918
  • 3
  • 11
  • 25
-3
votes
1 answer

Double Blind Entry (Two Pass Verification) for JavaScript?

Are there JQuery features that would help put together a double blind entry ? Basically, an input that requires the exact same text to be entered twice (in the same input box). If they don't match, then the input is cleared (as if they had…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
-4
votes
1 answer

Wrap line of tag

I would like to wrap some text in tag. When I use word-wrap: break-word, its doesn't work.
Eduard Arevshatyan
  • 648
  • 3
  • 18
  • 34
-4
votes
1 answer

angularjs , any idea how to include "" in ng-bind=""

any idea how to put>> phoneNo["phoneno"] in html input using ng-bind angular?? phoneNo["phoneno"] can display if use {{phoneNo["phoneno"]}}, but it turn to syntax error when i put
Patrick
  • 13
  • 2
1 2 3
50
51