UI Deploy

Curated, Short, Web UI Dev we Love.

Avoiding the 300ms Click Delay, Accessibly

On touch devices, a click event has a 300ms delay before firing. The reason for this the delay is that browsers need that buffer to make sure you aren’t going to double-tap on anything. The result is that if you use click events blindly, that delay creates a noticeable lag as users interact with elements on your page.

view source

Advertisement