Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<body>
  <form>
    <input type="radio" name="amount" value="10"/> $10&#8194 
    <input type="radio" name="amount" value="25"/> $25&#8194 
    <input type="radio" name="amount" value="50"/> $50&#8194
    <input type="radio" name="amount" value="100"/> $100&#8194
    <input type="radio" name="amount" value="250"/> $250&#8194
    <input type="radio" name="amount" value="other"/> Other
  </form>
</body>

To make the $50 option the default selection what HTML code would I use?

Link to code bin demo

share|improve this question

3 Answers

up vote 2 down vote accepted

Just set it as checked:

<body>
  <form>
    <input type="radio" name="amount" value="10"/> $10&#8194 
    <input type="radio" name="amount" value="25"/> $25&#8194 
    <input type="radio" name="amount" value="50" checked="checked" /> $50&#8194
    <input type="radio" name="amount" value="100"/> $100&#8194
    <input type="radio" name="amount" value="250"/> $250&#8194
    <input type="radio" name="amount" value="other"/> Other
  </form>
</body>
share|improve this answer
1  
Thanks. That's it. – wide_eyed_pupil Jan 23 '12 at 6:21

Just Simply Add

checked="checked"

in a declaration of Button Which u want to be default Checked.

share|improve this answer
<input type="radio" name="amount" value="50" checked="checked"/>
share|improve this answer
I voted this up before I checked it works. Doesn't seem to work for me :-\ I know the selected method is used for having a pre-selected item in a drop-down list… demo code Documentation w3schools – wide_eyed_pupil Jan 23 '12 at 6:20
1  
Thanks for the edit selected–>checked ;-) – wide_eyed_pupil Jan 23 '12 at 6:53
yes - I answered, then tried it, and realised I was thinking select, not radio, so edited it to checked. – craigmj Jan 23 '12 at 7:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.