Jump to content

amitamberker

Members
  • Posts

    599
  • Joined

  • Last visited

Posts posted by amitamberker

  1. Well, you are using the XHTML 1.0 DTD, which may be a problem...
    Oh! Then what would you suggest? I mean, what should I place?
    also, the range input type probably isn't very well-supported, for example, IE8 falls back to using text input.
    Then howcome it's displaying on http://www.tutorialized.com/view/tutorial/...put-Types/60798 ?
    Also, you really should have the input within a form element.
    You mean to say something like this:<form><input name="range" type="range" value="50" min="0" max="100" /></form>
    In the end, many HTML 5 features are simply not widely implemented, so don't be surprised if they don't work.
    Oh! humm...
    P.S. it would be helpful if you used more specific and relevant titles.
    The web page's Title (<title>HTML 5</title>) OR this Thread's Title?But again, howcome it's displaying on http://www.tutorialized.com/view/tutorial/...put-Types/60798 ?
  2. Hello All,I am unable to see the Slider (range bar) from the following CODE. Am I doing something wrong?

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Language" content="en-us" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>HTML 5</title></head><body><div><input name="range" type="range" value="50" min="0" max="100" /></div></body></html>
    FYI - I picked the <input blah... blah... blah... /> from - http://www.tutorialized.com/view/tutorial/...put-Types/60798
×
×
  • Create New...