thanks for your reply - I think that's cracked it :)
On Jul 15, 1:21 am, James <james.gp....@gmail.com> wrote: > Is the callback function of thedouble-clickhandler separate (has a > variable name to reference)? > If so, just use that function as the callback to the single-click > handler. > > Otherwise, maybe you can just have the single-clicktrigger > adouble-clickevent. I haven't tried this. > > $("#myDiv").click(function() { > $(this).trigger("dblclick"); > > }); > > On Jul 13, 3:59 pm, Piers Plowden <piersplow...@gmail.com> wrote: > > > I'm wondering if anyone knows a method for 'converting' a singleclick > > to (effectively) adoubleclickwith a timeout? > > > I have an onclick handler issue that requires adoubleclickfor an > > event that the user will expect to need only a singleclickfor..... > > > Thanks!