Re: [jQuery] Link and Puff()?

2007-01-08 Thread Stefan Petre
Hi Shane, you can do this $('#myelement a').bind( 'click', function () { var linkHref = this.href; $(this.parentNode).Puff( 500, function(){ window.location.href = linkHref; } ); return false;

[jQuery] Link and Puff()?

2007-01-08 Thread Shane Graber - jQuery
I am attempting to use: $("#myelement").click(function() { $("#myelement img").Puff(500); }); My markup is as such: I need the Puff() effect to take place when the person clicks on the link before the browser heads over to mysite.com. What is the proper syntax in order