There is no doDefault () command, you need to reverse engineer your code.
I would prevent default and then execute the url directly through window.location . It is also possible to use another tag for the anchor tag - redefining its functionality, it makes no sense to use it in the first place.
for example, something like this:
$("#dl").live("click", function(e){ e.preventDefault(); $("#dlbox").fadeOut(500, function() { window.location='www.fish.com'; }); });
Nibblypig
source share