|
-
Oct 15th, 2009, 04:31 AM
#1
Thread Starter
New Member
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,.,
-
Oct 15th, 2009, 06:34 AM
#2
Fanatic Member
Re: text inside the textbox
why a textbox? why don't you just make it like this:
Code:
Name: <input type="text" size="15"/>
-
Oct 15th, 2009, 11:04 AM
#3
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|