jedierikb
jedierikb

Reputation: 13109

Javascript to get system double click interval?

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

Upvotes: 7

Views: 1900

Answers (2)

Scott Evernden
Scott Evernden

Reputation: 39986

Using pure JavaScript, and not asking the user to help you? No

Upvotes: 1

epascarello
epascarello

Reputation: 207537

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.

Upvotes: 5

Related Questions