hi, i looking for a way to change text field date using up/down keys i have looking on google but i not find nothing working in both browsers any one know something like this? thanks for your help
You need to elaborate. I'm not too sure what you meant by that, but from my understanding, you want to increase/decrease the date in the text field using up/down keys. One way I could think of on javascript is to trigger an onkeydown event. Let's say the user pressed on up key - the javascript key code for the up key is 38, then if it's == 38, then increase the date on the text field, vice versa with the down key. See this for the key code