Auto Format Date

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jeswin12
    New Member
    • Jul 2006
    • 3

    Auto Format Date

    Hi i need a javascript code that can auto format the dates to dd/mm/yy format ie., if you type in 270506 in the textbox, it should automaticaly convert it to 27/05/06

    I need this script urgently.

    Thanks in advance.
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    If str is the value of the textbox:
    [code=javascript]newVal = str.substring(0 ,2) + "/" + str.substring(2 ,4) + "/" + str.substring(4 );[/code]

    Comment

    Working...