[jQuery] Re: Problem with animate after submit in opera

2009-10-20 Thread Constantin Valeriu Tuguran
Thanks again for your time. The idea is this: I have an action that usually finishes instantly but can take alot of time if on that action the database is migrated (this happens rarely but it happens). On this action i triggered the animation because I wanted to notify the user somehow that things

[jQuery] Re: Problem with animate after submit in opera

2009-10-20 Thread Karl Swedberg
On Oct 20, 2009, at 3:53 AM, Constantin Valeriu Tuguran wrote: Thanks for the help. I wanted to give the user some feedback while waiting for an action to complete so I can not return false. I must find another way. How about this, then? ... $(document).ready(function(){ $

[jQuery] Re: Problem with animate after submit in opera

2009-10-20 Thread Constantin Valeriu Tuguran
Thanks for the help. I wanted to give the user some feedback while waiting for an action to complete so I can not return false. I must find another way. Best Regards, 2009/10/20, Karl Swedberg : > Is the link's href set to another page? If so, I'm surprised it works > in any browser. You would n

[jQuery] Re: Problem with animate after submit in opera

2009-10-19 Thread Karl Swedberg
Is the link's href set to another page? If so, I'm surprised it works in any browser. You would need to return false after your animate methods: $(document).ready(function(){ $(".action").click(function(){ $("#panel") .animate({top:"0px"}, 500)