Detect 'dblclick' only. 'click' still fires....
- $('#exampleBox').bind('click', functionOne);
- $("#exampleBox').bind('dblclick', functionTwo);
If I have somethign like this, can I make it so that functionOne doesn't get executed on a 'dblclick' event. I notice that even if I double click, any kind of click will trigger functionOne.
Any ideas?