4

Getting following error by clicking multiple times on a simple link with some basic jQuery attached to it in Chrome Version 20.0.1132.57:

Error in event handler for 'undefined': INDEX_SIZE_ERR: DOM Exception 1 undefined

Here's a live demo of the very basic and simple code, to trigger the error, simply spam the link several times with your console log open (developer tools): http://jsfiddle.net/ZkXDy/

Henrik
  • 278
  • 3
  • 12
  • 2
    Same version of Chrome here, spam clicked the link with Console open... nothing. Maybe it's an extension you have installed or something? – MrOBrian Jul 24 '12 at 20:19
  • I used window.setInterval and had it click about 4k times.. No error like that popped up http://jsfiddle.net/ZkXDy/1/ – wirey00 Jul 24 '12 at 20:35
  • 3
    Thanks for heading me in the proper direction, tried deactivating and reactivating my extensions one by one and seems Google Dictionary (by Google) was causing the issue when the fast clicking became a double click and triggered the extension which led to some sort of bug! – Henrik Jul 24 '12 at 20:37
  • Ah, thanks for that. Solved my issue too. Change to an answer and I'll +1 – Lee Taylor Aug 28 '12 at 09:55

1 Answers1

10

Posted the solution in comments but figured it would be more visible as an answer to anyone with the same issue.

Tried deactivating and reactivating my extensions one by one and seems Google Dictionary (by Google) was causing the issue when the fast clicking became a double click and triggered the extension which led to some sort of bug!

Thanks to MrOBrian for heading me in the proper direction

Henrik
  • 278
  • 3
  • 12