[jQuery] Re: Problem with long request

2008-07-22 Thread k8
up On 20 Lug, 03:37, k8 [EMAIL PROTECTED] wrote: I have need that the content of the manually loaded page bot.php or, not when he is ended the execution of the file bot.php clearly? On 19 Lug, 19:21, Ariel Flesler [EMAIL PROTECTED] wrote: $(window).load(function(){ $(#content

[jQuery] Re: AJAX request pending after TCP connection closed

2008-07-22 Thread k8
I have your same problem here http://groups.google.com/group/jquery-en/browse_thread/thread/ea1a416e94c66164 On Jun 6, 1:22 pm, Greg [EMAIL PROTECTED] wrote: Hi everybody! I use jQuery 1.2.6 and I encounter a little issue. I try to do some COMET (server push), here is an overview of my

[jQuery] Re: Problem with long request

2008-07-19 Thread k8
) .load(bot.php); }); If you don't need to wait for window.onload, then you can replace the first line for $().ready(function() { Cheers -- Ariel Fleslerhttp://flesler.blogspot.com/ On 18 jul, 11:02, k8 [EMAIL PROTECTED] wrote: Hi guys, i have a one problem.. Script JS

[jQuery] Problem with long request

2008-07-18 Thread k8
Hi guys, i have a one problem.. Script JS: $().ready(function() { $(window).load(function () { $(#content).append(Connessione in corso..br); $.get(bot.php, function(data){ $(#content).html(data); }); }); });

[jQuery] Re: two forms with plugins validator

2008-06-22 Thread k8
UP UP UP On 19 Giu, 21:15, k8 [EMAIL PROTECTED] wrote: uhm, i have try with submithandler on .validate({}) but don't work great the validation this is my code $().ready(function() { $(#FormRegister).validate({ submitHandler: function() { alert(Submitted

[jQuery] Re: two forms with plugins validator

2008-06-19 Thread k8
it - it submits the form and nothing else, so you don't need it anyway. Jörn On Thu, Jun 19, 2008 at 4:06 AM, k8 [EMAIL PROTECTED] wrote: Hi guys :) I have this code: [code] /* For #joinusFastForm */ $.validator.setDefaults({ submitHandler: function

[jQuery] two forms with plugins validator

2008-06-18 Thread k8
Hi guys :) I have this code: [code] /* For #joinusFastForm */ $.validator.setDefaults({ submitHandler: function() { document.getElementById(joinusFastForm).submit(); //$(#joinusForm).submit(); } }); $().ready(function() { // validate

[jQuery] Re: strange error with plugin validation

2008-06-07 Thread k8
nisba? On 5 Giu, 11:13, k8 [EMAIL PROTECTED] wrote: This is theerrorthat comes when i put text in the field password. jQuery.validator.methods[method] has no propertieshttp://localhost:9090/youminiweb/js/jquery-validate/jquery.validate.js Line 467 On 4 Giu, 17:19, Jörn Zaefferer [EMAIL

[jQuery] Re: strange error with plugin validation

2008-06-05 Thread k8
clarify. Meanwhile, this looks like it shouldn't be there: $(#joinusCompleteForm).submit(function(){ $(#joinusCompleteForm).validate(); }); Jörn On Wed, Jun 4, 2008 at 2:43 PM, k8 [EMAIL PROTECTED] wrote: Hi guys, i have thisstrangeerrorwith plugin validation. This is my code

[jQuery] Re: strange error with plugin validation

2008-06-05 Thread k8
clarify. Meanwhile, this looks like it shouldn't be there: $(#joinusCompleteForm).submit(function(){ $(#joinusCompleteForm).validate(); }); Jörn On Wed, Jun 4, 2008 at 2:43 PM, k8 [EMAIL PROTECTED] wrote: Hi guys, i have thisstrangeerrorwith pluginvalidation. This is my code

[jQuery] strange error with plugin validation

2008-06-04 Thread k8
Hi guys, i have this strange error with plugin validation. This is my code: http://rafb.net/p/L0yQZ681.html Thx @ all.