views:

351

answers:

2

Can I use javascript to get the system's double click interval?

+1  A: 

There is no way in JavaScript to retrieve that type of system information.

You might be able to figure out some strange clicking test using onclick and onddblclick to get it, but I doubt it will be exact and would require user interaction.

epascarello
+1  A: 

using pure javascript, and not asking the user to help you? no

Scott Evernden