[jQuery] Re: How to solve this

2008-11-06 Thread Johny
Thank you Jeffrey for your reply Best regards, Lad.

[jQuery] Re: How to solve this

2008-11-06 Thread Jeffrey Kretz
-based solution, but if you are interested I have a .NET one I wrote. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Johny Sent: Wednesday, November 05, 2008 10:57 PM To: jQuery (English) Subject: [jQuery] Re: How to solve this Nobody kn

[jQuery] Re: How to solve this

2008-11-05 Thread Johny
Nobody knows the answer to my question ? :-(

[jQuery] Re: How to solve this

2008-11-05 Thread Johny
Thank you ALL who helped.Now it works but because the form uploads a large file I would like to add a progress bar indicator or something like. Is it possible to implement a progress uploading indicator with jQuery? I thought about an animated picture( as the easiest solution) but when I start

[jQuery] Re: How to solve this

2008-11-04 Thread Shawn
Or submit the form from code: $("input[type='submit'").click( function () { $("#informUserText").show(); $("form").submit(); $return false; }); On Tuesday 04 November 2008 13:53:51 Mauricio (Maujor) Samy Silva wrote: > Do not cancel the default action for the click event with the statement

[jQuery] Re: How to solve this

2008-11-04 Thread Mauricio (Maujor) Samy Silva
Do not cancel the default action for the click event with the statement return false; Try to remove that line from your code. Mauricio -Mensagem Original- De: "Johny" <[EMAIL PROTECTED]> Para: "jQuery (English)" Enviada em: terça-feira, 4 de novembro de 2008 14:49 Assunto: [jQuery]

[jQuery] Re: How to solve this

2008-11-04 Thread Mike Alsup
>         $('[EMAIL PROTECTED]').click(function() { >          $('#InformUserText').show(); > >                  return false; >          }); > > The text ( see InformUserText) is shown but the action script from the > form, see MyURL, is not called. > Can you please help how to say to a user that