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,.,
Printable View
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,.,
why a textbox? why don't you just make it like this:
Code:Name: <input type="text" size="15"/>
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"/>