Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 8th, 2012  |  syntax: None  |  size: 0.64 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Radio Buttons not mutually exclusive : HTML [closed]
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6.     <title></title>
  7. </head>
  8. <body>
  9.     <div>
  10.     <form>
  11.         First name: <input type="text" name="firstname" /><br />
  12.         Subscribe? <input type="checkbox" name="subscribe" /><br />
  13.         FedEx! <input type="radio" name="deliveryoption" /><br />
  14.         DHL! <input type="radio" name="deliveryoption" /><br />
  15.         <input type="submit" name="submit" value="Send Data" />
  16.     </form>
  17.     </div>
  18. </body>
  19. </html>