Record/playback keystrokes in textfield using Javascript
        Posted  
        
            by James
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by James
        
        
        
        Published on 2010-05-13T22:10:06Z
        Indexed on 
            2010/05/13
            22:14 UTC
        
        
        Read the original article
        Hit count: 244
        
Is it possible to record a user's input into an HTML textfield, and playback at a later date in realtime? One way I can think of would be to capture each keyDown event and the time delta (accurate to a few hundred ms), and store the pairs together.
Can you think of a better/more efficient way?
© Stack Overflow or respective owner