I need help me, HTML Input

rhr

Active Member
Joined
Nov 29, 2004
Messages
1,224
Reaction score
0
Hi Guys, I try research about input

Code:
<input type = "text" value = "alldeaf" name = "name1" autofocus >

I want end of blink cursor
| is cursor,

it is show |alldeaf but I want alldeaf|

HTML, CSS, or/and Javascript, no matter

any idea?
 
FINAL

Code:
<input id="userinput" onfocus="var val=this.value; this.value=''; this.value= val;" class=large type="text" size="50" maxlength="100" value="AllDeaf" name="myinput">
<script>document.getElementById('userinput').focus();</script>

done!
 
Back
Top