html input text box simple question, simple answer

Sharky Forums


Results 1 to 4 of 4

Thread: html input text box simple question, simple answer

  1. #1
    Goldfish
    Join Date
    Apr 2002
    Posts
    51

    html input text box simple question, simple answer

    How do you keep the text in a text box from changing. I have the text in there and i don't want the user to be able to change the value of it. How do i do this, i know it is easy, but my brain isn't working today. Thanks.
    Athlon XP 2000+ @2100+
    Soyo Ultra Dragon Platinum
    Kingston PC2700 DDR 512mb
    Radeon 9500 np
    SB Audigy
    Lite-on 40x12x48
    Logitech z560's
    and nearly half a terabyte of storage

  2. #2
    Hammerhead Shark Tekime's Avatar
    Join Date
    Dec 2001
    Location
    Falmouth, ME
    Posts
    2,347
    I think this should work for you:

    <input type="text" value="Don't change me!" disabled>
    Stuff and stuff

  3. #3
    Ursus Arctos Moderatis Grizzly's Avatar
    Join Date
    Sep 2000
    Location
    Providence, RI USA
    Posts
    3,077
    I'm think that only works in IE. I know one way that always works in IE and Netscape is:

    Code:
    <input type="text" name="myName" value="Grizzly" size="45" onFocus="this.blur()">

  4. #4
    Hammerhead Shark Tekime's Avatar
    Join Date
    Dec 2001
    Location
    Falmouth, ME
    Posts
    2,347
    Originally posted by Grizzly
    I'm think that only works in IE. I know one way that always works in IE and Netscape is:

    Code:
    <input type="text" name="myName" value="Grizzly" size="45" onFocus="this.blur()">
    I was afraid of that. I believe I only used the method one time in an actual prject, and when I think back it was for an intranet site that was only IE5. So you're more than likely right. I'll have to check out both methods later on, because I think this could come in useful in a PHP project I'm working on...
    Stuff and stuff

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •