Results 1 to 3 of 3

Thread: text inside the textbox

  1. #1

    Thread Starter
    New Member
    Join Date
    Sep 2009
    Posts
    14

    text inside the textbox

    My problem is that i want a text inside a textbox..

    is this possible?

    <input type="textbox" size="15"> there's a text inside that textbox that telling "Enter your name here.."

    plss help me,.,

  2. #2
    Fanatic Member
    Join Date
    Jun 2008
    Posts
    1,023

    Re: text inside the textbox

    why a textbox? why don't you just make it like this:

    Code:
    Name: <input type="text" size="15"/>

  3. #3
    Frenzied Member
    Join Date
    Apr 2009
    Location
    CA, USA
    Posts
    1,516

    Re: text inside the textbox

    There's no such thing as type "textbox." As Justa Lol said, you can use <input type="text">, and if you want default text in it, use the "value" attribute, like so:
    Code:
    <input type="text" value="Enter your name here..." size="15"/>

Posting Permissions

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



Click Here to Expand Forum to Full Width