Results 1 to 4 of 4

Thread: Input type radio in html

  1. #1
    Join Date
    Feb 2006
    Posts
    185

    Input type radio in html

    Doe any one know how to use input type radio command in html language. I have created two web page in html and i want to add some option for employee details which may selected from radio button.

  2. #2
    Join Date
    May 2008
    Posts
    2,297

    Re: Input type radio in html

    The Radio input type creates circles that can either be checked or unchecked by the user. RADIO is used to create a series of choices of which only one can be selected.
    Code:
    <input type="radio" name="emp1" value="r" default> R<br>
    <input type="radio" name="emp2" value="al"> al<br>
    <input type="radio" name="emp3" value="cl"> Cl<br>
    <input type="radio" name="emp4" value="et"> An else

  3. #3
    Join Date
    Jan 2009
    Posts
    199

    Re: Input type radio in html

    HTML Forms are used to select different kinds of user input like radio input, check box input. RADIO is a TYPE attribute value to the INPUT element for FORMs. INPUT type=radio Element | input type=radio Object : Creates a radio button control. A radio field represents a boolean choice. A set of radio fields with the same name represents a one-of-many choice.

  4. #4
    Join Date
    Dec 2008
    Posts
    177

    Re: Input type radio in html

    <input type="radio" /> Description: The <input type="radio" /> tag puts radio buttons on form documents. Radio buttons are for selecting one item from multiple available choices. When the user selects a button in the set, all other buttons in the set are deselected. While INPUT is most useful within a FORM, HTML 4 allows INPUT in any block-level or inline element other than BUTTON.

Similar Threads

  1. Replies: 1
    Last Post: 01-10-2011, 07:35 AM
  2. Input type with CSS
    By Miles Runner in forum Software Development
    Replies: 5
    Last Post: 03-03-2010, 05:51 PM
  3. Creating input text with background image in HTML
    By Measurer in forum Software Development
    Replies: 4
    Last Post: 23-12-2009, 10:13 PM
  4. HTML input type password
    By Antarjot in forum Software Development
    Replies: 3
    Last Post: 18-11-2009, 01:32 PM
  5. Input Type Checkbox
    By raviranch in forum Software Development
    Replies: 5
    Last Post: 14-04-2009, 03:07 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,290,077.22584 seconds with 17 queries