[jQuery] Re: jquery too long to load

2010-01-02 Thread Corey
Looks to me like the www.000webhost.com analytics code is what is slowing the process, not the loading of jQuery. I got waiting for attilio.site50.net and/or www.000webhost.com messages from your site. As I'm sure you know jQuery waits for the entire page to load before it is enacted hence the $(

[jQuery] Document Click triggered onSubmit

2009-11-17 Thread Corey Hart
I'm having a bit of trouble understanding why a click event attached to the document is being triggered when submitting a form through the enter key. Here's my setup: $(function(){ // Form Submission $('form').bin

[jQuery] Getting XMLHttpRequest status

2008-06-27 Thread corey
ot;GET", url: "member_check.php", dataType: "xml", error: function(event, XMLHttpRequest, ajaxOptions, thrownError) { alert( XMLHttpRequest.status ) // << } ) Any ideas? Thanks! Corey

[jQuery] Re: Autocomplete plugin modifications

2008-04-28 Thread Corey Coto
Thanks Jörn! I created: http://dev.jquery.com/ticket/2756 http://dev.jquery.com/ticket/2757 On Apr 28, 1:50 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Corey Cotoschrieb:> Hi, > > > I made a couple of modifications to the jQuery Autocomplete plugin > > (Release

[jQuery] Autocomplete plugin modifications

2008-04-28 Thread Corey Coto
Hi, I made a couple of modifications to the jQuery Autocomplete plugin (Release 1.0). I am using the plugin on a multiple entry field and quering a web service. 1. Myself and others have run into an issue which prevents users from inputting items not in the autocomplete selection list. The solut

[jQuery] Re: Fixing divs with jquery (adding )

2007-10-29 Thread Corey Frang
You could simply wrap the php file in another php file that does ob_start() then includes the other php file, ob_get_contents(), edit the code appropriately and then dump it. Would be my suggestion... Broken DOM leads to many problems, one of which is jQuery wont be able to find selectors ve

[jQuery] Re: JSPacker for .NET

2007-10-01 Thread Corey Downie
I am currently writing a similar library but using jsmin. I would love to take a peek at the code. On Sep 17, 9:08 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote: > I've spend the last few days building a .NET implementation of a gzip > packer. It accepts an argument like either of these two: >

[jQuery] Couple of Bugs, css + jquery

2007-08-22 Thread Corey Frang
http://www.pablokorona.com/corey/ I figured I'd just post this to both lists as there is a good chance someone on either side can help me with either problem. The big problems I'm having 1) The layout breaks hard in IE6, any suggestions? 2) The animation, the #picfloater blinks

[jQuery] Re: Select only the next row in a table

2007-06-27 Thread Corey Frang
Not really, that selector finds ALL "tr" then any "tr" after each of those. Assuming your calling it from something like this: $(".showNextRow).click(function() { $(this).parents("tr").next("tr.hidden").show(); return false; }); also assuming that the t1 table isn't inside another table with