[jQuery] [jQuery Validate] How to use on group of two selects

2009-10-06 Thread Up-Works
How would I validate this group of two selects: * Expires MM 01 02 03 04 05 06 07 08 09 10 11 12 2009 2010 2011 2012 2013 2014

[jQuery] Re: Click Tracking - Works In IE Only

2009-05-29 Thread Up-Works
Thank you James - I will try this"What if you try to use $.ajax instead, and set the option 'async' to 'false', so that it waits for the AJAX response before the click- through occurs? "

[jQuery] Re: Click Tracking - Works In IE Only

2009-05-29 Thread Up-Works
On May 29, 2:36 pm, James wrote: > "What" is not working? > Clicking the link does nothing? Does 'providerid' not have a value? Is > the AJAX not being sent? No AJAX response? In FF and Safari it does not fetch the $.get before loading the new page location, thus the ..lib/bannerTracking.php

[jQuery] Re: Click Tracking - Works In IE Only

2009-05-29 Thread Up-Works
On May 29, 2:54 pm, James wrote: > Try putting a "return false;" at the end of your click code so that it > doesn't go to the next page. See if the AJAX call works. > (Theoretically, it probably still should not if it didn't before.) > > I'm not sure what you're saying about the console display

[jQuery] Click Tracking - Works In IE Only

2009-05-29 Thread Up-Works
Need to know why this code below records the click in IE but does not record the click in FF or Safari. a.adBanner is an internal link within the same domain. Thank you in advance. $('a.adBanner').live('click',function(){ var provider_id = $(this).attr('id'); var providerid =

[jQuery] Re: Plugin -Error after Upgrading to jQuery1.3

2009-01-20 Thread Up-Works
There is an update to the Form Plugin available here: http://jqueryjs.googlecode.com/svn/trunk/plugins/form/jquery.form.js On Jan 20, 12:59 pm, Up-Works wrote: > After upgrading to jQuery 1.3 the FORM plugin has an issue with FILE > uploads.  When attempting to submit a form containing

[jQuery] [FORM] Plugin -Error after Upgrading to jQuery1.3

2009-01-20 Thread Up-Works
After upgrading to jQuery 1.3 the FORM plugin has an issue with FILE uploads. When attempting to submit a form containing a file input type using .ajaxForm() it throws an alert stating: Error: Form elements must not be named "submit". Here is the form:

[jQuery] [plugins] Form - Success function fires multiple x's

2008-12-27 Thread Up-Works
I am using the ajaxForm() to submit a form and the success function that is defined in the options array is firing 3 times. Any ideas? Code: var options = { target:'.updateStatus', beforeSubmit: updStatus, success: showResponse, url: '

[jQuery] How to speed up IE6/IE7 $get();

2008-05-15 Thread Up-Works
I am loading a PHP script upon a select element changing, the PHP calls to db and then loads an avg of 100 PNG files that are between 5-10k. In both safari and FF there is no lag at all but in IE7 it is 15 seconds of waiting and in IE^6 it is up to 45 seconds. It almost seems that in both IE's i

[jQuery] [validate] $.valid() issue with IE6

2008-04-21 Thread Up-Works
On Apr 21, 9:21 am, Up-Works <[EMAIL PROTECTED]> wrote: > Yes this line is, $('form#order').validate();, 10 lines above my > livequery function > > Should I place it outside of the $(document).ready( function() ) { }; > > On Apr 21, 8:02 am, Jörn Zaefferer &

[jQuery] Re: [validate] $.valid() issue with IE6

2008-04-21 Thread Up-Works
Yes this line is, $('form#order').validate();, 10 lines above my livequery function Should I place it outside of the $(document).ready( function() ) { }; On Apr 21, 8:02 am, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Up-Works schrieb: > > > $('input#s

[jQuery] [validate] $.valid() issue with IE6

2008-04-18 Thread Up-Works
$('input#step2').livequery('click',function() { if($('form#order').valid()) { $('div#stepOne').hide(); $('div.step').html('StepTwo'); $('div#stepTwo').show(); } return false; }); The line - if($('form#order').valid()) { Cause IE 6 to throw and error stating 'Object doesn't support

[jQuery] [validate] - IE6 Issue

2008-04-17 Thread Up-Works
$('form#order').validate(); $('input#step2').livequery('click',function() { if($('form#order').valid()) { $('div#stepOne').hide(); $('div.step').html('StepTwo'); $('div#stepTwo').show();

[jQuery] Re: Correct Selector syntax

2008-04-15 Thread Up-Works
_ > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Apr 13, 2008, at 12:34 PM, Up-Works wrote: > > > > > I have this block of HTML: > > > > > >Player Name: > > > minlength="2"/> > > > >

[jQuery] Re: Correct Selector syntax

2008-04-15 Thread Up-Works
Thank you Karl - worked like a charm! What a great surprise to see the author of two great jQuery books, 'jQuery Reference Guide' and 'Learning jQuery' to be the respondent.

[jQuery] Correct Selector syntax

2008-04-13 Thread Up-Works
I have this block of HTML: Player Name:  Did you mean: Robert Yes: No: I am using a click function on the input.spellQ that if value==Y it grabs the text() from span.corretWord and places it in the previous input.required.spell. I am having trouble se

[jQuery] click() not binding to appended elment

2008-03-25 Thread Up-Works
I have this code: $('a#addPlayer').click(function() { $(' Player Name: <\/label> Player Number: <\/label><\/ p>').insertBefore($(this).parent()); pi++; return false; }); Then I have this: $('img.remove').click(function() {

[jQuery] 1.2.2 Released 20 minutes ago

2008-01-15 Thread Up-Works
http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.2.pack.js