[jQuery] Re: Documentation Nit: .load - Incorrect Info regarding how data is sent

2007-08-18 Thread John Resig
You don't put the object in as a string - you put it in as an object: console.log($.param({k1:'v1', k2:'v2'})); which outputs: k1=v1k2=v2 --John On 8/18/07, Pops [EMAIL PROTECTED] wrote: Stephan, You're pulling my leg? Firebug shows this when I enter the following in the console:

[jQuery] Re: .blur() not doing it's job

2007-08-18 Thread John Resig
Nope, that should work - do you have a page with this code on it? --John On 8/18/07, Angelo Gladding [EMAIL PROTECTED] wrote: Hey all, I'm trying to blur (remove focus from) a link. Non-working code: $('#tags_clear').blur(); Working code: document.getElementById('tags_clear').blur();

[jQuery] Re: jQuery negatives: dual/triple/quadruple special-case uses for both function calls and method names

2007-08-17 Thread John Resig
I'm all in favor of removing gt/lt/eq in favor of the selector version with filter. That was the original goal, but I actually decided to introduce an array method into jQuery to solve that problem: .slice(). Now gt/lt/eq will become: gt: .slice(Num) lt: .slice(0,Num) eq: .slice(Num,1) Plus

[jQuery] Re: jQuery negatives: dual/triple/quadruple special-case uses for both function calls and method names

2007-08-17 Thread John Resig
The only concern I have is that this could be yet another mysterious method that someone might not know what it does. Will it work just lke javascript's slice method? Yes, of course - that's the only reason why I'm making this change. --John

[jQuery] Re: Avoiding anonymous functions - enhancement suggestion

2007-08-17 Thread John Resig
I've thought of this, as well. I also wanted to add a hook to allow: $(...).click(.toggle()) However, I'm currently leaning away from it (embedding code in strings is messy) in favor of another solution that I'm working on: $(...).onclick().toggle().end(); Removing the need for anonymous

[jQuery] Re: Select 2 types of elements

2007-08-17 Thread John Resig
$(input, select) to select them both --John On 8/17/07, Giovanni Battista Lenoci [EMAIL PROTECTED] wrote: Hi, I did not find in doc, can I select 2 types of elements in only one instruction? My purpose is to capture values from input and select elements in a form to serialize it. Thank

[jQuery] Re: Array of numbers in contains()

2007-08-16 Thread John Resig
This might be a case for writing your own custom filter function: $(.field-item).filter(function(){ return $(this).text().match(/2[0-5]/); }).append(': Extreme'); --John On 8/15/07, bsuttis [EMAIL PROTECTED] wrote: Hi, I'm appending a word to a number like so:

[jQuery] Re: New jQuery Plugin - jQTreeTable unobtrusive Treetablemaker

2007-08-16 Thread John Resig
I've seen requests for this type of plugin frequently - I'd be interested in seeing a demo of this combined with the tablesorter plugin: http://tablesorter.com/ - that would make for a truly impressive demonstration. One quick item: I noticed that when I collapsed a parent item, all child items

[jQuery] Re: jQuery negatives: dual/triple/quadruple special-case uses for both function calls and method names

2007-08-16 Thread John Resig
I don't understand this argument at all. So this guy is proposing that we change all the jQuery methods to: $Array([array of elems]) $Selector(str) $HTML(html) $Element(DOMElement) and: .appendElement(DOMElement) .appendHTML(html) .appendArray([array of elems]) what on earth does that gain

[jQuery] Re: jQuery negatives: dual/triple/quadruple special-case uses for both function calls and method names

2007-08-16 Thread John Resig
improve my code dramatically but I don't even know WHEN I might use them, so I don't know when to look for them. Does that makes sense? andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Thursday, August 16, 2007 12:53 PM

[jQuery] Re: jQuery negatives: dual/triple/quadruple special-case uses for both function calls and method names

2007-08-16 Thread John Resig
did that very thing last week, but with 10 more lines of code). andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Thursday, August 16, 2007 1:48 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery negatives

[jQuery] Re: How to select element id that contains [] chars

2007-08-16 Thread John Resig
http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F On 8/16/07, Stuart [EMAIL PROTECTED] wrote: Yep. That did it. Although I could have sworn I already tried that. I probably tried a single slash or something. This is good to

[jQuery] Re: jQuery negatives: dual/triple/quadruple special-case uses for both function calls and method names

2007-08-16 Thread John Resig
Great work Mitch - if someone wants to beat me to you, you should move this over to the wiki. I'll try to take a stab at it, if I can remember. --John On 8/16/07, Mitch [EMAIL PROTECTED] wrote: I think this is a very stimulating topic - the responses have given me a lot of insights to the

[jQuery] Re: question about selectors

2007-08-15 Thread John Resig
Try using :first-child instead of :first as :first will only ever return one element - whereas :first-child returns the first element in the 'row'. --John On 8/15/07, Guapo [EMAIL PROTECTED] wrote: there are three 3*3 tables. how to select the first cell in every row in the first two

[jQuery] Re: Selector question should be easy

2007-08-15 Thread John Resig
Yeah, your selector should be: $(div:not(#myID)) --John On 8/15/07, Mitch [EMAIL PROTECTED] wrote: Does anyone have a way to select all divs except one with a specific ID? I want something like $(* :not(myID)).click or $(div :not(myID)).click I have tried :not but have not been

[jQuery] Re: caption supported?

2007-08-15 Thread John Resig
That being said, we have to do a lot of shady trickery to make table-related things work properly. @Benjamin: You should file a bug on this: http://dev.jquery.com/ --John On 8/15/07, Stephan Beal [EMAIL PROTECTED] wrote: On Aug 16, 3:56 am, Benjamin Sterling [EMAIL PROTECTED] wrote: Hey,

[jQuery] Re: caption supported?

2007-08-15 Thread John Resig
suggesting we should change write less. do more to doing shady trickery so you don't have to. :) Thanks for your help guys. On 8/15/07, Erik Beeson [EMAIL PROTECTED] wrote: jQuery: doing shady trickery so you don't have to. --Erik On 8/15/07, John Resig [EMAIL PROTECTED] wrote

[jQuery] Re: caption supported?

2007-08-15 Thread John Resig
quickly? I will try to grab that version tonight, if not, sometime tomorrow. Thanks. On 8/15/07, John Resig [EMAIL PROTECTED] wrote: I was feeling feisty. Fixed in SVN rev 2728. Check a copy out of SVN to give it a try (but the test case passes). --John On 8/15/07, Benjamin

[jQuery] Re: caption supported?

2007-08-15 Thread John Resig
, of Drupal fame. :) Karl Rudd On 8/16/07, John Resig [EMAIL PROTECTED] wrote: I have a kid? I sure hope not! :-) --John On 8/15/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Ok, I had my kid back in January and I am just recently getting time to work on my side

[jQuery] Re: Text node selector?

2007-08-12 Thread John Resig
they are the sole children of their parent node. Since jQuery ignores text nodes, I think I would have to use a custom traverse function instead. Does this make sense? Jed Schmidt On Aug 12, 12:50 am, John Resig [EMAIL PROTECTED] wrote: How about using innerWrap?http://blog.brandonaaron.net/2007/06/04

[jQuery] Re: Got Grid? Here's a large plugin effort.

2007-08-12 Thread John Resig
Very nice! I like that you used an event to communicate a change - that's the smart way to do it. You should consider looking at the recent jQuery UI work - it's possible that some of the drag drop efforts over there might help you out. I wasn't able to figure out how to insert / delete rows -

[jQuery] Re: Text node selector?

2007-08-11 Thread John Resig
How about using innerWrap? http://blog.brandonaaron.net/2007/06/04/jquery-snippets-innerwrap/ --John On 8/11/07, Jed Schmidt [EMAIL PROTECTED] wrote: Looking into the jQuery source, it seems like this would be pretty daunting (nodeType == 1 is checked in 5 different places, making it seem

[jQuery] Re: Creating Custom Classes

2007-08-11 Thread John Resig
To write a class how you like, you could do it like this: function ajax_request(options){ // initialize this.setOptions( options ); } ajax_request.prototype = { // members and properties setOptions: function(options){ this.options = options; } }; That's the full source code - no

[jQuery] Re: Why jQuery over Mootools

2007-08-11 Thread John Resig
I just wanted to post my reply from your other thread, not sure if you saw it: To write a class how you like, you could do it like this: function ajax_request(options){ // initialize this.setOptions( options ); } ajax_request.prototype = { // members and properties setOptions:

[jQuery] Re: Creating plugins

2007-08-11 Thread John Resig
I'll follow up here as well: To write a class how you like, you could do it like this: function ajax_request(options){ // initialize this.setOptions( options ); } ajax_request.prototype = { // members and properties setOptions: function(options){ this.options = options; } }; That's

[jQuery] Re: $.getJSON ?

2007-08-11 Thread John Resig
You can't request JSON data from remote URLs, currently. You'll need to run the request through a local server in order to get at the specific data, unfortunately. --John On 8/11/07, neuromystical [EMAIL PROTECTED] wrote: Can anyone tell me what is wrong with the following. I am new to

[jQuery] Re: jQuery 1.1.3.1 Safari Crashes

2007-08-07 Thread John Resig
This bug was found just after the 1.1.3.1 release - a ticket was opened on it and a new version was provided to those that were effected. The fix will be included in the upcoming 1.1.4 release (which should be coming out today or tomorrow). --John On 8/7/07, Mike Chabot [EMAIL PROTECTED] wrote:

[jQuery] Re: Fwd: DOM traversing problem.

2007-08-07 Thread John Resig
of limited block level element, limited in the sense that their parent has to be an OL or a UL. DTs are inline elements, perhaps that's what you were thinking? Karl Rudd On 8/7/07, John Resig [EMAIL PROTECTED] wrote: You can't have a table and h4 inside of an LI - they're both

[jQuery] Re: Two IE6/7 issues: clone() creating DOM element

2007-08-07 Thread John Resig
I'm having 2 little issues regarding IE6/7 with 2 instructions that seem to work just fine in most browsers but not in IE6/7. First one, using clone() method: $('div#content a').each(function(elem) { if(elem === 0) { var color =

[jQuery] Re: Resig's Accordion Lite

2007-08-07 Thread John Resig
Just to clarify: I'm not planning on removing step: function(){}, I'm just changing the argument that it's receiving from being an absolute number (generally in pixels) to a decimal number (from 0 to 1). In 1.2 I want to make it so that you can animate non-numerical properties (like colors) which

[jQuery] Re: Two IE6/7 issues: clone() creating DOM element

2007-08-07 Thread John Resig
How about this simple stylesheet switcher plugin? That seems to be close to what you need: http://www.kelvinluck.com/article/switch-stylesheets-with-jquery --John On 8/7/07, Nazgulled [EMAIL PROTECTED] wrote: You are right, I created the element in the DOM and it worked fine. However I

[jQuery] Re: Possible typo/bug in jquery 1.1.3.1 source?

2007-08-07 Thread John Resig
Fixed! Thanks for the catch. --John On 8/7/07, mkidder [EMAIL PROTECTED] wrote: John, There is a comma at the end of line #694 in 1.1.3.1 jquery.js source, shouldn't this be a semi-colon? It's not part of an object literal, and may cause problems with IE6. We know how it loves extra

[jQuery] [New Plugins] Ajax Queue and Ajax Sync

2007-08-07 Thread John Resig
Hey everyone - So Mike Hostetler was telling me about some Ajax queueing plugins that he wanted to write - so I got some ideas, and less than an hour later - here are two new Ajax queueing plugins for you to enjoy! Lame demo: http://dev.jquery.com/~john/plugins/ajaxqueue/ About the plugins: *

[jQuery] Re: [New Plugins] Ajax Queue and Ajax Sync

2007-08-07 Thread John Resig
In the source of the URL that I linked to. I also just added it to the main contents, to make it easier to access. --John On 8/7/07, Christopher Jordan [EMAIL PROTECTED] wrote: Those sound really useful! Where can we get the code? Cheers, Chris On 8/7/07, John Resig [EMAIL PROTECTED

[jQuery] Re: Move JSON into the JQuery's core?

2007-08-07 Thread John Resig
(( + data + )); 3. size is not that large. 1.x kb only On 8月7日, 下午9時22分, John Resig [EMAIL PROTECTED] wrote: In what respect? jQuery can already consume JSON data - and it can serialize it back to a query string. If the JSON serialization plugins start getting used enough (which

[jQuery] Re: Turning a checkbox on and off

2007-08-06 Thread John Resig
How do you check and uncheck a checkbox from jQuery? This is another item that is in the FAQ: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_check.2Funcheck_an_input.3F --John

[jQuery] Re: Complete jQuery documentation

2007-08-06 Thread John Resig
We generally don't document those functions intentionally - since they're not supported and will probably be changed, or possibly removed, at any point in the future. As a plugin developer, there's a good chance that you won't have to worry about those functions. --John On 8/6/07, __note [EMAIL

[jQuery] Re: Design group

2007-08-06 Thread John Resig
What do you mean by design issues? Do you mean the design of the library? If that's the case, that's why we have the dev list: http://groups.google.com/group/jquery-dev --John On 8/6/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi John, have you considered creating two separate groups: one

[jQuery] Re: request: need help naming new plugin

2007-08-06 Thread John Resig
Toggle Pane On 8/6/07, Stephan Beal [EMAIL PROTECTED] wrote: Hi, all! i just put together an accordion-like plugin based off of this Karl Swedberg's article: http://www.learningjquery.com/2007/02/more-showing-more-hiding The difference from other Accordions is that it does not enforce

[jQuery] Re: Fwd: DOM traversing problem.

2007-08-06 Thread John Resig
You can't have a table and h4 inside of an LI - they're both block-level elements, so browsers automatically push them outside of the LI (meaning that you can't find them. You'll have to use some other markup structure in order to handle that. --John On 8/6/07, Dan Eastwell [EMAIL PROTECTED]

[jQuery] Re: request: need help naming new plugin

2007-08-06 Thread John Resig
No prob :) It's just what popped into my mind after you described the problem/solution. --John On 8/6/07, Stephan Beal [EMAIL PROTECTED] wrote: On Aug 7, 12:31 am, John Resig [EMAIL PROTECTED] wrote: Toggle Pane Okay, it'd be hard to turn down the opportunity to say, The Man named my

[jQuery] Re: Resig's Accordion Lite

2007-08-04 Thread John Resig
Everyone: I really discourage against making plugins rely on step: right now - it's an undocumented function that was going to be removed from jQuery. However, since people are using it now, that means that its API will have to be adapted to work with the upcoming jQuery 1.2 animation changes.

[jQuery] Re: Resig's Accordion Lite

2007-08-04 Thread John Resig
[EMAIL PROTECTED] wrote: So will it be a big deal to modify the accordian after step is changed? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Saturday, August 04, 2007 7:08 PM To: jquery-en@googlegroups.com Subject

[jQuery] Re: Ext 1.1

2007-08-04 Thread John Resig
That updating is left to the Ext team - it's not clear why they didn't update the attached plugins. --John On 8/4/07, Jon Ege Ronnenberg [EMAIL PROTECTED] wrote: Hi all! Is there an update to the jquery-plugins.js? The one that comes with Ext 1.1 looks pretty old. I just want to make sure

[jQuery] Re: UI upload

2007-08-03 Thread John Resig
Sure - you should probably re-post this to the jQuery UI mailing list: http://groups.google.com/group/jquery-ui That's where we're currently discussing the UI stuff, you'll get a better response :-) --John On 8/3/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hi! i just saw that there

[jQuery] Re: :eq vs :nth?

2007-08-03 Thread John Resig
Huh... I should probably nuke :nth(). --John On 8/3/07, Karl Swedberg [EMAIL PROTECTED] wrote: They're the same, so you can use whichever you prefer. From jquery.js: nth: m[3]-0==i, eq: m[3]-0==i, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com

[jQuery] Re: Unable to replicate what seems like a simple element via jQuery

2007-08-03 Thread John Resig
Do you have a page using the jQuery code? It's a little bit hard to tell from the example. Right now, the only thing that seems strange is .removeAttr(style), but it's hard to say without seeing it in action. --John On 8/3/07, Jim Newfer [EMAIL PROTECTED] wrote: Hello everyone, After

[jQuery] Re: :eq vs :nth?

2007-08-03 Thread John Resig
;-). -GTG On 8/3/07, John Resig [EMAIL PROTECTED] wrote: Probably not since :le(3) is the same thing as :lt(4). --John On 8/3/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: meantime, is there any possibility to add le() and ge() (for lesser than or equal to and greater than

[jQuery] Re: :eq vs :nth?

2007-08-03 Thread John Resig
On 8/3/07, John Resig [EMAIL PROTECTED] wrote: Huh... I should probably nuke :nth(). --John On 8/3/07, Karl Swedberg [EMAIL PROTECTED] wrote: They're the same, so you can use whichever you prefer. From jquery.js: nth: m[3]-0==i, eq: m[3]-0==i, --Karl

[jQuery] Re: :eq vs :nth?

2007-08-03 Thread John Resig
Selectors are staying, the methods are going. --John On 8/3/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: quick question... are the :eq() etal... selectors gonna stay? or are they going to be removed as well. -GTG On 8/3/07, John Resig [EMAIL PROTECTED] wrote: Well, it should

[jQuery] Re: :eq vs :nth?

2007-08-03 Thread John Resig
They'll be deprecated in 1.1.4, removed in 1.2. --John On 8/3/07, Josh Nathanson [EMAIL PROTECTED] wrote: josh, how is that maintaining backwards compatibility? I assume that you will still be able to use the old selectors, but the underlying method that processes them will be different

[jQuery] Re: If user clicks in one place OR another place OR another place...

2007-08-02 Thread John Resig
$([EMAIL PROTECTED]'history'] OR '[EMAIL PROTECTED]').click(function() Like so: $([EMAIL PROTECTED]'history'], [EMAIL PROTECTED]').click(function() ...) --John

[jQuery] Re: Before automatically closes tags...?

2007-08-02 Thread John Resig
I just made a quick tweak to .nextUntil() so that it can take a comma-separated list of items. I updated the demo to reflect this as well, for example: $(h2).each(function(){ $(this).nextUntil(h1, h2).wrapAll(div class='note'/div); }); --John On 8/2/07, DaveG [EMAIL PROTECTED] wrote:

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread John Resig
We, actually, just started work on a jQuery FAQ that follows this format exactly: http://docs.jquery.com/Frequently_Asked_Questions Some include live demos, most have code. It's not perfect, but I have a text file with a list of things that should probably be tackled in it. Sitting in the IRC

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread John Resig
How do I's to go before it becomes useful on a large scale. I am not sure about the format, the demo for killing all but one divs was sort of hard to follow. Mitch -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Thursday

[jQuery] Re: Animate height from 0px to default w/o flicker

2007-08-01 Thread John Resig
Which browser? If you're in IE, then this flicker is because your page is in Quirks mode instead of Standards mode (you'll need to provide a correct DOCTYPE in order to trigger this). --John On 8/1/07, Kia Niskavaara [EMAIL PROTECTED] wrote: I want to animate the height of a box so that it

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-01 Thread John Resig
I still see a little bit of flicker in that new code that you posted - but I was just able to pull together a demo that works quite nicely. So here's a new, working, accordion (albeit, a very simple one): http://dev.jquery.com/~john/plugins/accord/ compare with the old code:

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-01 Thread John Resig
I'm sure this will be a huge hit if people are made aware of it. Any thoughts about putting it out for others to see? Maybe a blog post or something? This is just one more great example of your crescent fresh programming skills! Your kick-assity knows no bounds. I'm a little bit hesitant

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-01 Thread John Resig
-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Wednesday, August 01, 2007 4:36 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Hover accordion (as on apple.com) I still see a little bit of flicker in that new code that you posted - but I was just able

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-01 Thread John Resig
On 8/1/07, Mitchell Waite [EMAIL PROTECTED] wrote: Nice update, the DD constant height is great. However, if you close the top menu the height still collapses. In my Spry example http://www.whatbird.com/wwwroot/Components/Accordion%20Menu.html they get around that issue by making it so

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-01 Thread John Resig
Very nice - you even added audio! :-) --John On 8/2/07, Mitchell Waite [EMAIL PROTECTED] wrote: I made the entire bar a hotlink, added an image and sound. http://www.whatbird.com/wwwroot/accord.html This is VERY easy to use. Oh and don't be mad, I made the easing linear, because, well

[jQuery] Re: ..selector bug..

2007-07-31 Thread John Resig
What if you do @maxLength and .attr('maxLength') ? --John On 7/31/07, spinnach [EMAIL PROTECTED] wrote: i think i've come across a tiny bug in jquery 1.1.3.1, $('[EMAIL PROTECTED]) return an empty array, although there is such a textarea in the dom.. also $('textarea').attr('maxlength')

[jQuery] Re: ..selector bug..

2007-07-31 Thread John Resig
It's just one of those things - some properties get the camelcase formatting - maxLength is one of them. --John On 7/31/07, spinnach [EMAIL PROTECTED] wrote: it works that way.. how come ? dennis. John Resig wrote: What if you do @maxLength and .attr('maxLength') ? --John On 7

[jQuery] Re: IE misinterpreting HTTP status code 204 as 1223

2007-07-31 Thread John Resig
You should open up a ticket on this: http://dev.jquery.com/ If this is something that YUI is normalizing, then we probably should as well. --John On 7/31/07, Andy Martone [EMAIL PROTECTED] wrote: I've come across some strange behavior in IE7. Sometimes when an XmlHttpRequest receives a 204

[jQuery] Re: tr[position() mod 3 = 0]

2007-07-30 Thread John Resig
As of jQuery 1.1.3 you can now do: $(tr:nth-child(3n)) --John On 7/30/07, Dmitrii 'Mamut' Dimandt [EMAIL PROTECTED] wrote: What would be the jQuery way of doing tr[position() mod 3 = 0] ? Thank you!

[jQuery] Re: What library to use for drag and drop?

2007-07-30 Thread John Resig
You guys think that a final version of the jquery ui will be available end of August/ beginning of Semptember, or should we stick to the interface plugin? If you're open to waiting until then, then yes, I'd recommend it. The result is going to be very good. If you're interested in giving it

[jQuery] Re: Safari 3 known issues

2007-07-29 Thread John Resig
Those bugs that you see all revolve around one issue: http://dev.jquery.com/ticket/1349 Safari completely breaks accessing computed CSS properties and some DOM elements when display: none is set (which it is, in the test suite). I'm hoping to get a fix for this in for 1.1.4, which will be coming

[jQuery] Re: ScrollTo with Easing

2007-07-29 Thread John Resig
http://docs.jquery.com/JQuery_1.2_Roadmap On 7/29/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Is there a roadmap for jquery 1.2 that we can see and get a glimpse of what to expect in that version. -GTG On 7/27/07, John Resig [EMAIL PROTECTED] wrote: http://docs.jquery.com

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-28 Thread John Resig
Rick - We started work on adding metadata to plugins a while back, so that you could know that sort of information (what version of jQuery is required, what versions of plugins it depends on). Here's a random sample: http://dev.jquery.com/browser/trunk/plugins/accordion/META.json You can dig

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-28 Thread John Resig
with it, whatever... Thoughts? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Saturday, July 28, 2007 4:56 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: How does everyone handle the constant updating

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-28 Thread John Resig
Random thought, since jQuery is now using the Drupal project module. Have you looked into whether or not the new update_status module for Drupal would be modifiable to suit your needs? It may be rather Drupal-specific at the moment, but it may be modifiable to handle jQuery plugins instead.

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-28 Thread John Resig
Just out of curiosity, what is your main concern about a paid subscription service? If the subscription were very low-priced and the benefits were significant, I don't see how anyone would mind contributing to the effort financially. My primary concern is that it isn't open, nor does it

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-28 Thread John Resig
If Mike were being paid for his time, would he be less stretched and able to work more on the Project/Plugin system? You'd have to ask Mike, obviously, but at the same time, we'd rather give people the opportunity to selflessly contribute to the project - turning it from a true,

[jQuery] Re: My Jquery-Tab plugin allow selectable remote tab and add oninit even function

2007-07-27 Thread John Resig
Klaus - I've already added this functionality to Tabs for a presentation that I gave yesterday. I'm going to whip up a patch and email it to you real quick. --John On 7/27/07, Klaus Hartl [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Dear Klaus, Sorry~I wasn't trying to make you

[jQuery] Re: ScrollTo with Easing

2007-07-27 Thread John Resig
jQuery 1.2 is going to have animatable scrolling, you can find a quick demo here (using easing): http://dev.jquery.com/~john/ticket/step/test2.html --John On 7/27/07, Glen Lipka [EMAIL PROTECTED] wrote: There is a feature of EXT 2.0 that needs a ScrollTo function. I saw this one:

[jQuery] Re: ScrollTo with Easing

2007-07-27 Thread John Resig
I assume that it'll just supercede it, since it'll be used directly through the .animate() function. --John On 7/27/07, Dan G. Switzer II [EMAIL PROTECTED] wrote: jQuery 1.2 is going to have animatable scrolling, you can find a quick demo here (using easing):

[jQuery] Re: ScrollTo with Easing

2007-07-27 Thread John Resig
-Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Friday, July 27, 2007 12:44 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ScrollTo with Easing I assume that it'll just supercede it, since it'll

[jQuery] Re: ScrollTo with Easing

2007-07-27 Thread John Resig
://www.smallfarmcentral.com On Jul 27, 11:48 am, John Resig [EMAIL PROTECTED] wrote: jQuery 1.2 is going to have animatable scrolling, you can find a quick demo here (using easing):http://dev.jquery.com/~john/ticket/step/test2.html --John On 7/27/07, Glen Lipka [EMAIL PROTECTED] wrote

[jQuery] Re: jQuery 1.1.3 Ignores Inline Event Registration

2007-07-27 Thread John Resig
Already been fixed in SVN, will be in jQuery 1.1.4. --John On 7/27/07, Diego A. [EMAIL PROTECTED] wrote: Hi there, I'm not sure whether this is a bug or an intentional change, but I'm having problems with my implementations of jQuery because version 1.1.3 ignores inline event

[jQuery] Re: Moving Plugins to new repository

2007-07-24 Thread John Resig
Is the old list still going to be archived (incase some plugins are not updated by the original author and someone takes it over)? Yeah, we'll make a copy of the old plugin list. Plugin authors should try and prune plugins that they have already moved over, or are dead and they are no longer

[jQuery] Re: 3 state buttons - is there a best way

2007-07-24 Thread John Resig
$(div.buttons).mousedown(function(){ $(this).addClass(down); }).mouseup(function(){ $(this).removeClass(down); }).hover(function(){ $(this).addClass(hover); },function(){ $(this).removeClass(hover); }); Then in your CSS you would have this: div.buttons { .. } /* Up state */

[jQuery] Re: 3 state buttons - is there a best way

2007-07-24 Thread John Resig
John, in your example you can't have div.buttons.hover. That doesn't work in IE6 unfortunately. I WISH it did. (http://commadot.com/?p=528) I'm not sure how you're testing this, but it worked wonderfully for me (You even made me load up Parallels :-P). You need to be careful to make the

[jQuery] Re: 'Type mismatch' trying to append to XML node

2007-07-23 Thread John Resig
Yeah, it does seem like there's something tricky at play here, I've created a ticket to track this: http://dev.jquery.com/ticket/1419 I'll see if I can get a fix for this in for 1.1.4. --John On 7/23/07, Andy Martone [EMAIL PROTECTED] wrote: I'm having a similar problem in IE. However, my

[jQuery] Re: 'Type mismatch' trying to append to XML node

2007-07-23 Thread John Resig
='group' xxx/div); node.appendTo(b); Looking at the code above I would assume the problem is that we are creating node using the current document and then trying to append that node to an element in a different document. This, of course, won't work. Mike On 7/23/07, John Resig [EMAIL PROTECTED

[jQuery] Re: Jquery doesn't work with mod_rewrite ?

2007-07-21 Thread John Resig
What's your rewrite rule? I rewrite the URLs for the jquery.js files on jquery.com and never had any problems. --John On 7/21/07, Nico [EMAIL PROTECTED] wrote: Hello, I've already post this message in another lists wihch was not the right one. Hello, First of all, I'd like to say that the

[jQuery] Re: interface plugin not working with jquery 1.1.3.1?

2007-07-21 Thread John Resig
Brian - This has already been fixed (in jQuery) and it's in SVN. It'll be in jQuery 1.1.4, which should be coming out soon. --John On 7/21/07, brianwilkins [EMAIL PROTECTED] wrote: I had the following jquery script in my web page and it worked fine with jquery 1.1.2. After an upgrade to

[jQuery] Re: jquery trunk stable?

2007-07-20 Thread John Resig
As far as I can tell [2332] may have fixed #1251, but I haven't had the opportunity to test it yet. And as far as #1319 goes, I haven't been able to duplicate it at all. You can give a nightly a try, but there shouldn't be any significant issues (even the aforementioned issues are rather

[jQuery] Re: jQuery for Dummies

2007-07-19 Thread John Resig
There's a brand new book, Learning jQuery, which sounds like it might be right up your alley. More info here: http://www.packtpub.com/jQuery/book/mid/1004077zztq0 --John On 7/19/07, Mitchell Waite [EMAIL PROTECTED] wrote: I'm trying to learn jQuery from the tutorials at the web site. They

[jQuery] Re: License questions

2007-07-18 Thread John Resig
only and no the webapplication using it? I apologize for nitpicking this.. Thanks, James 1 Copyright (c) 2007 John Resig, http://jquery.com/ 2 3 Permission is hereby granted, free of charge, to any person obtaining 4 a copy of this software and associated documentation files (the 5 Software), to deal

[jQuery] ANNOUNCE: SF jQuery Meetup and Ajax Experience

2007-07-17 Thread John Resig
and interesting forum. More exciting than even those speakers, there will be two jQuery representatives speaking: John Resig and Glen Lipka. John will be giving 3 sessions, two on jQuery: * Introduction to jQuery http://ajaxexperience.techtarget.com/west/html/frameworks.html#JResigIntro * Advanced jQuery

[jQuery] Re: Site Offline?

2007-07-16 Thread John Resig
I'm running some fixes on the database so I had to take the site down real quick - it should be back up again soon. --John On 7/16/07, John Farrar [EMAIL PROTECTED] wrote: Did I miss an announcement that jQuery.com would be down this morning?

[jQuery] Re: Site Offline?

2007-07-16 Thread John Resig
The site is back up! On 7/16/07, John Farrar [EMAIL PROTECTED] wrote: Rey, I have over 1000 emails a day frequently... and then there are RSS feeds. I don't read them all. Wasn't trying to be smart, don't flame someone until they earn it. :) John Rey Bango wrote: Smartass! ;) Let me

[jQuery] Re: syntax errors in jquery-1.1.3.1.js

2007-07-16 Thread John Resig
Rick - I just ran jQuery through JSLint and none of the warnings are related to semicolons. Generally its complaints fall into a couple categories foo != undefined (a quick way to check to see if something is defined or not) if ( foo == bar ) (using no { ... }, doesn't like that) In fact,

[jQuery] Re: Problem with jQuery.fix in event model

2007-07-16 Thread John Resig
This is a bug in jQuery that will be fixed in 1.1.4 (which should be coming out soon). There's a ticket open on it now, and we're working to resolve it. --John On 7/16/07, Jeffrey Kretz [EMAIL PROTECTED] wrote: I am trying an integration of Ext and jQuery for a new project. In doing a

[jQuery] Re: Problem with jQuery.fix in event model

2007-07-16 Thread John Resig
- From: John Resig [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Monday, July 16, 2007 2:45 PM Subject: [jQuery] Re: Problem with jQuery.fix in event model This is a bug in jQuery that will be fixed in 1.1.4 (which should be coming out soon). There's a ticket open on it now

[jQuery] Re: OT: Devo hat?

2007-07-15 Thread John Resig
Yep :) On 7/15/07, Mika Tuupola [EMAIL PROTECTED] wrote: This has been bothering me for a while :) Does jQuery logo represent the Devo hat? http://www.devo-obsesso.com/html/12in-pgs/main/foc_japan-pro.html -- Mika Tuupola http://www.appelsiini.net/~tuupola/

[jQuery] Re: Compressed BlockUI plugin?

2007-07-14 Thread John Resig
Added to the FAQ: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_compress_by_code.3F --John On 7/14/07, Rey Bango [EMAIL PROTECTED] wrote: Awesome! Thanks Chris! :D Christopher Jordan wrote: If compressing your JS breaks it, try running the code through JSLint

[jQuery] Re: Interface abandoned?

2007-07-14 Thread John Resig
Full instructions can be found here (just added): http://docs.jquery.com/UI#Downloading --John On 7/14/07, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: Probably a stupid question, but how to retrieves these files by svn ? Glen Lipka wrote: Information on the next gen of Interface:

[jQuery] Re: Selector challenge?

2007-07-13 Thread John Resig
If that break is guaranteed to be there, then this will work: jQuery('.formError:first', this).prev().prev(':input') --John On 7/13/07, Gilles (Webunity) [EMAIL PROTECTED] wrote: td input.. br div class=formError.../div /td As said. in the application i am building iit should find the

[jQuery] Re: Inline events triggering in 1.1.3.1

2007-07-13 Thread John Resig
This was identified about a week ago: http://dev.jquery.com/ticket/1363 We're checking into it and should have a fix in place by 1.1.4 (which should be coming out soon). --John On 7/13/07, Renaud [EMAIL PROTECTED] wrote: Hello, I'm not sure I'm missing something in the documentation but

<    1   2   3   4   5   6   >