[jQuery] Re: TableSorter 2.0.3 parser usLongDate doesn't like Timezone added...

2008-11-17 Thread Geoff Millikan
How about a $20 USD donation to Jquery for an answer?

[jQuery] TableSorter 2.0.3 parser usLongDate doesn't like Timezone added...

2008-11-12 Thread Geoff Millikan
The native TableSorter 'usLongDate' fails if the timezone is added like this: Nov 12, 2008 1:25 PM (PST) Nov 11, 2008 2:25 PM (EST) So I chopped the timezone off with my own custom parser like in the below. But once I add my custom parser, the native parser 'usLongDate' doesn't run! Can I run

[jQuery] Re: JQuery Size YUI Compressor mod_deflate/GZIP

2008-02-04 Thread Geoff Millikan
Joel, Wow, I had no idea that packed JavaScript had to be unpacked on each page load! Ouch! So if I'm reading the data right on the JavaScript Library Performance Test Roundup it seems as though the way to go is defiantly the Yahoo minified script with GZIP at 131ms cached (731ms uncached).

[jQuery] Re: JQuery Size YUI Compressor mod_deflate/GZIP

2008-01-29 Thread Geoff Millikan
Good point! So what's the benchmark on Jquery script execution time using a YUI Compressed script versus packed jquery-1.2.2.pack.js? If the time is significant, then you're right - it probably makes sense to use the larger YUI-Compressed file instead of the smaller packed file. I feel like

[jQuery] JQuery Size YUI Compressor mod_deflate/GZIP

2008-01-23 Thread Geoff Millikan
An update to the analysis at the link here: http://www.julienlecomte.net/blog/2007/08/13/ === Expected best compression rate ===--- Uncompressed jquery-1.2.2.js = 93.1 KB Compacted with latest release (2.2.5) of YUI Compressor = 52 KB After Apache/2.2.3 (Red Hat 5) mod_deflate GZIP

[jQuery] jQuery 1.2.2 Rev: 4454 and jquery-nightly.pack throwing errors?

2008-01-19 Thread Geoff Millikan
This has got to be some error on my side but in case it isn't, I'm seeing the below errors in FF2.0.0.11 with Firebug 1.05 at http://www.t1shopper.com/voip/ so I'm switching back to jQuery 1.2.1 Rev: 3353 this.setArray is not a function http://www.t1shopper.com/ssi/jquery/jquery.pack.js Line 6

[jQuery] Re: onClick submit using jQuery Form Plugin

2008-01-18 Thread Geoff Millikan
The answer is here: http://groups.google.com/group/jquery-en/browse_thread/thread/e66ec974ed2c57e3/dae2b489f7aa986d

[jQuery] Re: jQuery Form Plugin, and ajax submit without submit button

2008-01-16 Thread Geoff Millikan
I've tried many variations of the below and they don't work (and don't return any errors). Could you please, please post a very small html snippet showing how to make a click event trigger the ajax form submit. I will donate $100.00 USD to jQuery.

[jQuery] Re: jQuery Form Plugin, and ajax submit without submit button

2008-01-16 Thread Geoff Millikan
Thank you Mike! Transaction ID: 8B774711LS930240P Placed on Jan. 16, 2008 Payment For Quantity Price jQuery Donation Item #JQUERY-DONATE 1 $100.00 USD Subtotal: $100.00 USD Sales Tax: $0.00 USD

[jQuery] Re: jQuery Form Plugin, and ajax submit without submit button

2008-01-15 Thread Geoff Millikan
So like this? form input type=checkbox name=whatever onClick='$ ('#form_id').ajaxSubmit()' /form http://groups.google.com/group/jquery-en/browse_thread/thread/b15fa8db4db5deeb

[jQuery] Re: jQuery Form Plugin, and ajax submit without submit button

2008-01-15 Thread Geoff Millikan
This might be the answer we're looking for: http://groups.google.com/group/jquery-en/browse_thread/thread/961a893390a9f9b2

[jQuery] onClick submit using jQuery Form Plugin

2008-01-14 Thread Geoff Millikan
May a onClick document.form_name.submit() be used with the jQuery Form Plugin or must a submit button be used? http://www.t1shopper.com/voip/

[jQuery] Re: jQuery Form Plugin Doesn't execute on returned forms?

2007-12-17 Thread Geoff Millikan
How do I bind the new form after it is inserted into the DOM? Anyone have a link to an example?

[jQuery] Re: jQuery Form Plugin document.myform.submit()

2007-11-25 Thread Geoff Millikan
How interesting, the form submits, and the AJAX is returned (I can see it in FireBug) but not in the DIV tags. It appears that using a function to submit the form breaks the jQuery Form Plugin. Example at the below link. Click on the dial up button to submit the form.

[jQuery] jQuery Form Plugin Doesn't execute on returned forms?

2007-11-25 Thread Geoff Millikan
I have a form that is submitted via the jQuery Form Plugin to a PHP page which then returns another form in its place. The second form looks identical to the first however this second form will not submit via the jQuery Form Plugin. It's as if the jQuery Form Plugin script at the top of the

[jQuery] Re: jQuery Form Plugin Doesn't execute on returned forms?

2007-11-25 Thread Geoff Millikan
I think you guys are cool. I really appreciate that you guys are spending your time helping others like this. I hope you get some reward for this other than seeing people communicating more effectively on the 'net. Anyway, I read the Why do my events stop working FAQ 3 or 4 times, read the

[jQuery] Jquery 1.2.1 AJAX load.() newbie question

2007-11-24 Thread Geoff Millikan
When I click the submit button it should do AJAX and put the contents of the insertme.html file in the id feeds but it's not working. I must be missing something really basic... htmlhead script src=jquery-1.2.1.min.js/script script function loadme(){alert(Hi, I'm running!); $

[jQuery] Re: Jquery 1.2.1 AJAX load.() newbie question

2007-11-24 Thread Geoff Millikan
Hold the phone, I figured it out. Example below. Thank you everyone!! html head script src=jquery-1.2.1.min.js/script script $(document).ready(function(){ $(document.body).click(function () {$ ('#feeds').load('insertme.html');}); }); /script /head body ul id=feeds/ul form input

[jQuery] Re: Jquery 1.2.1 AJAX load.() newbie question

2007-11-24 Thread Geoff Millikan
I want to load the AJAX content when the submit button is pushed, not when the page is loaded. How do I do this? It seems like this would be a simple thing but I just can't get it to work. I feel really dumb for even asking but it's got me stumped. I see that there's great examples about how

[jQuery] Re: Jquery 1.2.1 AJAX load.() newbie question

2007-11-24 Thread Geoff Millikan
Hold the phone, I figured it out. Example below. Thank you everyone!! html head script src=jquery-1.2.1.min.js/script script $(document).ready(function(){ $(document.body).click(function () {$ ('#feeds').load('insertme.html');}); }); /script /head body ul id=feeds/ul form input

[jQuery] jQuery Form Plugin document.myform.submit()

2007-11-24 Thread Geoff Millikan
I love the jQuery Form Plugin! I want to submit the form using an onClick event instead of making the User click a input type=submit button. Is that possible? I tried the below but no luck: function submitme(){$('#myform').submit(function() { $(this).ajaxSubmit(); return false; });}

[jQuery] Re: clueTip 'rounded' theme issue with showTitle: false

2007-11-17 Thread Geoff Millikan
Karl, I changed it to margin: -24px -12px 0 0; and in IE6.0.29 SP2 it looks exactly centered top to bottom. With the same settings in FF2.0.0.9 the text looks just a tad too low in the clueTip but it's only a pixel or two too low. So I'm going to use the -24px for the top margin. I'll be

[jQuery] Re: clueTip 'rounded' theme issue with showTitle: false

2007-11-17 Thread Geoff Millikan
Karl, I wrote a long response that I guess never got posted. Suffice it to say I bumped the margin up to like margin: -24px -12px 0 0; which looked better in IE6.0.x and FF2.x to me. Got everything else working. Thanks for the great tool and please keep up your work on it. Definitive guide

[jQuery] Re: clueTip 'rounded' theme issue with showTitle: false

2007-11-15 Thread Geoff Millikan
I like the arrows on the rounded corners! Nice! Example #1 on the Rounded Corners Theme doesn't really work because the content in the clueTip is shifted down, out of vertical alignment within the clueTip. I'm guessing maybe it can be shifted up by playing with the padding? I'll give it a