Questions tagged [inputbox]

The tag specifies an input field where the user can enter data. elements are used within a

element to declare input controls that allow users to input data. An input field can vary in many ways, depending on the type attribute.

The most important form element is the element.

The element is used to select user information.

An element can vary in many ways, depending on the type attribute. An element can be of type text field, checkbox, password, radio button, submit button, and more.

<input type="text"> defines a one-line input field that a user can enter text into.

<input type="password"> defines a password field.

<input type="radio"> defines a radio button: Radio buttons let a user select ONLY ONE of a limited number of choices.

<input type="checkbox"> defines a checkbox: Checkboxes let a user select ZERO or MORE options of a limited number of choices.

<input type="submit"> defines a submit button.

These are types of input box, for more details of its attributes and properties please refer w3c

475 questions
-2
votes
3 answers

Need to display 2 input text after selecting a specific value in drop down in angular 4

I have a specific requirement. I need to display 2 input text fields after selecting a specific value from a drop down which is 'Add New...' My code snippet is below -
Sandipan Sarkar
  • 39
  • 1
  • 1
  • 7
-2
votes
1 answer

display the inputbox based on checkbox state by jquery append

I want to hide and show the inputbox based on checkbox status. In my case both are appended by the jquery as follows: $container.append('
  • -2
    votes
    2 answers

    How to make Bootstrap's input and textarea have the Material Design look?

    I'd like to make the textarea and input fields of Bootstrap to have the Material Design look. I'm currently using the stable version of Bootstrap — 3.3.7 What I'm planning to happen is: Make the label float when the field is focused. And a…
    -2
    votes
    1 answer

    Add input box to URL checker macro in excel 2010

    I found the following macro online. I would like to know how to add an input box that allow me to tell the macro to check other column than A and to start at other cells than A1. Sub Check_URLs() Dim cell As Range Dim IE As Object …
    Oren R
    • 1
    • 1
    -2
    votes
    1 answer

    Add value to field by URL ?name=data

    You know passing value to field by URL could be done by : ?name=data For example : Google.com/?q=stackoverflow And then when you open this link you have "stackoverflow" written in the field. But I can't do this with some websites. For example : (…
    user1599537
    • 1,269
    • 3
    • 10
    • 10
    -2
    votes
    2 answers

    Is it possible to have intellisense on InputBox

    In my Tic Tac Toe game I ask the players for their names and I ask them whether they want it to be saved. The next time they start the game I want the InputBox to display some sort of auto complete or IntelliSense to appear. QUESTION : How do I get…
    Dilan V
    • 313
    • 1
    • 3
    • 13
    -2
    votes
    3 answers

    C# How to re-run code in form load

    for my program i'm writing i want to ask for a name and if the input has a number or other unwanted input to loop back and do it again. This is my current code private void gameForm_Load(object sender, EventArgs e) { string value = "Type here"; …
    Ranga6669
    • 1
    • 3
    -3
    votes
    2 answers

    How to solve String must be exactly one character long? C# .net error

    I am trying to get input from user by using Microsoft.VisualBasic.dll. Then convert the input from [string] to [char] type. But it gives me this error when I run the code: *An exception of type 'System.FormatException' occurred in mscorlib.dll but…
    gonzalloe
    • 313
    • 3
    • 7
    • 22
    -3
    votes
    1 answer

    An dropdown autocomplete reactive input box in bootstrap

    I want to create a reactive input box exactly like the one that can be seen on Zomato.com. I was wondering hwo i could do it with a good looking template. Please help !
    user3599285
    • 91
    • 1
    • 7
    -6
    votes
    2 answers

    ajax update php variable from input box without submitting

    So i am trying to type something in input box which i want to be dynamically stored in a variable. And then there is a hyperlink next to a table of records which will take this variable(.php?S=$inputboxvariable) and go to next php page which will…
    user1467788
    • 5
    • 1
    • 4
    1 2 3
    31
    32