I'm using the one() function in jQuery to prevent multiple clicks. However, when they click the element a second time, it does the annoying click jump and sends you back to the top of the page.
Is there a way to prevent this from happening? Unbinding the click and re-binding it when the function is done has the same result (and I'm assuming that one()
just unbinds the event anyways).
A quick example of this happening: http://jsfiddle.net/iwasrobbed/FtbZa/
I'm not sure if this is better or not, but you could bind a simple function that maintains the
return false
.jQuery provides a shortcut for this with
.bind('click',false)
.or if you have several of these links, a very efficient alternative would be to use the
delegate()
[docs] method to bind a handler to a common ancestor that takes care of thereturn false;
for you.Here I just used the
body
, but you could use a nearer ancestor.