safari jquery keypress event bind problem for arrow key!
Its a little post just to share with you that today I was working on keyboard navigation with javascript. Surprisingly the arrow keys was not working at all while using $(document).keypress(function(event){alert(’in here’)}) on Safari browser! Even the alert was not firing up!!
Anyway, for this you need to use $(document).keyup solved the problem
Check the [...]