Re: [jquery-dev] $.ajax feature matrix

2009-11-12 Thread Julian Aubourg
Very nice and it will definitely help newcomers. A note though about cache in jsonp mode: if you use the automatic fetching of a callback name on the secondary question mark, the name being generated, browsers will never ever cache (how could they? The content is actually different)... and since

Re: [jquery-dev] Ant build

2009-11-12 Thread Jörn Zaefferer
Sizzle lives as a copy in the jQuery repository. QUnit should be pulled in as a sort of git external, though its required only for testing, not for making a build of jQuery itself. Jörn On Tue, Nov 10, 2009 at 4:37 AM, Justin Meyer justinbme...@gmail.comwrote: Does building with Ant work from

Re: [jquery-dev] Ant build

2009-11-12 Thread John Resig
Actually, both Sizzle and QUnit need to be pulled in dynamically (using Git submodules). The commands needed to do that are all in the Makefile and are run automatically before a build occurs. --John On Thu, Nov 12, 2009 at 8:15 AM, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Sizzle

Re: [jquery-dev] $.ajax feature matrix

2009-11-12 Thread John Resig
Hi Dave - This so much for pulling this together, it's very useful. I see some definite gaps that can be closed, when looking at this (for script/json/jsonp): - beforeSend/ajaxSend - dataFilter - processData - timeout Now, error and ajaxError could be handled - but to a limited degree. If

Re: [jquery-dev] $.ajax feature matrix

2009-11-12 Thread John Resig
I created some tickets for the missing features: http://dev.jquery.com/ticket/5500 http://dev.jquery.com/ticket/5501 http://dev.jquery.com/ticket/5502 --John On Thu, Nov 12, 2009 at 9:58 AM, John Resig jere...@gmail.com wrote: Hi Dave - This so much for pulling this together, it's very

Re: [jquery-dev] $.ajax feature matrix

2009-11-12 Thread Julian Aubourg
Regarding the abort possibility for jsonp (#5500 = #3442), this brings us back to the idea of returning an abstraction on top of the actual xhr/script hack/whatever. I was curious as to why the whole ajax typology wasn't implemented with a factory pattern: you would call something like

Re: [jquery-dev] $.ajax feature matrix

2009-11-12 Thread Julian Aubourg
Oh yes, also, ajax could handle image preloading too imo. 2009/11/12 Julian Aubourg aubourg.jul...@gmail.com Regarding the abort possibility for jsonp (#5500 = #3442), this brings us back to the idea of returning an abstraction on top of the actual xhr/script hack/whatever. I was curious as

Re: [jquery-dev] $.ajax feature matrix

2009-11-12 Thread John Resig
Regarding the abort possibility for jsonp (#5500 = #3442), this brings us back to the idea of returning an abstraction on top of the actual xhr/script hack/whatever. I was curious as to why the whole ajax typology wasn't implemented with a factory pattern: you would call something like

Re: [jquery-dev] Build Process

2009-11-12 Thread John Resig
Is there any work being done to create a jQuery build process that helps automate the concatenation and minifying of javascript files. Different from what we already have? If you wish to create a version of jQuery that has a different set of functionality (or reduced set) you just twiddle the

[jquery-dev] Re: Build Process

2009-11-12 Thread seasoup
Yeah, different from what is already there. For example, I'm told Dojo comes with a system using dojo.require that will dynamically concatenate and minify not just the dojo code, but custom components that you've built as well. I'm not fully up on Dojo.require, but the problem is that for

[jquery-dev] [OT] Fixing IE's CSS with jQuery

2009-11-12 Thread weepy
Not strictly jQuery Dev, but you guys might find it an interesting technique : Cssie = Plugin for jQuery providing native support for missing CSS in IE. Currently provides: * E F (direct descendant) * :hover (normally only available to a tags) * E + F (sibling) * [rel=attr]

[jquery-dev] Re: $.ajax feature matrix

2009-11-12 Thread Dave Methvin
Julian, could you show a few sample usages of the new design you had in mind? -- You received this message because you are subscribed to the Google Groups jQuery Development group. To post to this group, send email to jquery-...@googlegroups.com. To unsubscribe from this group, send email to

[jquery-dev] link focus lost after jquery-1.2.1 (serious accessibility problem)

2009-11-12 Thread tam
Hello, With Firefox and jQuery-1.3.2 so widely spread nowadays, I would like to report a rather serious accessibility problem for all people that are dependent on keyboard navigation. With all versions after jquery-1.2.1 (js being enabled), link focus is lost in Firefox when you follow a link to

[jquery-dev] Re: $.ajax feature matrix

2009-11-12 Thread Dave Methvin
I updated the spreadsheet to combine a few of the identical columns and add ticket numbers for the items you created. On #5501, processData=true by default to serialize a data object to a string. Since the data has to be appended to the URL for a GET request, it doesn't seem like

[jquery-dev] normalizing values to jQuery objects

2009-11-12 Thread Scott González
In jQuery UI we have lots of cases where we normalize various values to jQuery objects. Possible values are a jQuery object, DOMElement, array of DOMElements, selector, the string 'parent', the string 'clone', a function that returns a jQuery object. I've put together a function to handle this,

Re: [jquery-dev] Re: $.ajax feature matrix

2009-11-12 Thread Julian Aubourg
Well, the idea is to enable Jason Persampieri's idea of a chaining ajax system (ie $.ajax(options).success(...).error(...) ) while not having race conditions (so the bind method will be smarter than your usual one) and while maintaining compatibility with xhr. So basically, all ajax request

Re: [jquery-dev] link focus lost after jquery-1.2.1 (serious accessibility problem)

2009-11-12 Thread John Resig
Digging around it looks like we added our window unload event unbinding logic in 1.2.2 - and I bet that that's what was causing the problems. We actually fixed this in the latest nightlies (only unbind in IE) so this problem should be resolved in the upcoming 1.4 release. --John On Thu, Nov

[jquery-dev] JQuery is not working if we use in both Master and Content pages.

2009-11-12 Thread Naidu
Hi, We are trying to use the jQuery in both master page and Content page, but it is not working. It is working fine if we use it either in Master Page or Content Page,but not in both. My code is Master Page Code = head runat=server titleUntitled Page/title SCRIPT

[jquery-dev] Re: JQuery is not working if we use in both Master and Content pages.

2009-11-12 Thread Mr Speaker
Hey ChellamNaidu, This list is about developing the jQuery library itself, not about using it: you could ask over on the http://groups.google.com/group/jquery-en list - but, your question is about using JavaScript files in Master Pages and Content blocks - which is a .NET issue. You'd probably