Text Practice Mode
JS: Timer function
created Sep 4th 2014, 14:07 by christianstrang
8
20 words
            223 completed
        
	
	3.88889
	
	Rating: 3.88889	
	
		
		
			
				
					
				
					
					
						
                        					
				
			
			
				
			
			
	
		
		
		
		
		
	
	
		
		
		
		
		
	
            
            
            
            
			 saving score / loading statistics ...
 saving score / loading statistics ...
			
				
	
    00:00
				var myVar = setInterval( function() { myTimer() }, 1000);  
  
function myTimer() {
var d = new Date();
var t = d.toLocaleTimeString();
document.getElementById( "demo" )[removed] = t;
}
			
			
	        function myTimer() {
var d = new Date();
var t = d.toLocaleTimeString();
document.getElementById( "demo" )[removed] = t;
}
 saving score / loading statistics ...
 saving score / loading statistics ...