Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

format a textbox like VB?

Status
Not open for further replies.

neltan

Programmer
Nov 4, 2002
82
AU
Can I format a html textbox?
Just like VB:
__/__/____
25/10/2003
 
Not easily no. But you can have three text boxes and use the onblur() event to transfer the data to a hidden field:
Code:
<form>
<input type=&quot;text&quot; maxlength=&quot;2&quot; name=&quot;day&quot; />/
<input type=&quot;text&quot; maxlength=&quot;2&quot; name=&quot;month&quot; />/
<input type=&quot;text&quot; maxlength=&quot;4&quot; name=&quot;year&quot; onblur=&quot;this.form.date.value=this.form.day.value+'/'+this.form.month.value+'/'+this.form.year.value&quot; />
<input type=&quot;hidden&quot; name=&quot;date&quot; />
</form>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top