[jQuery] Re: META Tag

2007-05-09 Thread John Resig
isn't that because you're still referring to the old value in 'meta'? You need to call it again before you refer to it in the second alert: meta = $(meta).attr(content); --John On 5/9/07, Glen Lipka [EMAIL PROTECTED] wrote: meta http-equiv=refresh content=200;url=http://jquery.com;

[jQuery] Re: Error: $(document).ready is not a function

2007-05-09 Thread John Resig
It sounds like Prototype is overwriting jQuery's $ function. If you want to continue using the two libraries together, you'll need to refer to jQuery's $ function as 'jQuery', like so: jQuery(document).ready(function(){ //.. }); More information about this setup can be found here:

[jQuery] Re: MooTools 1.1

2007-05-08 Thread John Resig
I agree - they did a very nice job with the demos site. I'm sure we could arrange for something similar on the main site. --John On 5/8/07, Glen Lipka [EMAIL PROTECTED] wrote: Moo Tools 1.1 is out. Check out these demos. http://demos.mootools.net It's a great demo set. Clean and

[jQuery] Re: Ajax Experience Refer-A-Friend

2007-05-08 Thread John Resig
Actually, I'm going to be presenting, so I don't think I get a promo code - feel free to post yours, Glen, and reap the benefits! --John On 5/8/07, Glen Lipka [EMAIL PROTECTED] wrote: Ajax Experience 2007 has a refer a friend program.

[jQuery] Re: Selector help - All inputs except radio buttons?

2007-05-08 Thread John Resig
Try this: var params = $(input,select,textarea).not(:radio).serialize(); On 5/8/07, Brad Perkins [EMAIL PROTECTED] wrote: I currently have this? var params = $('input,select,textarea').serialize(); Is there a simple way to serialize all inputs expect for radio buttons?

[jQuery] Re: Where and how to download jQuery?

2007-05-07 Thread John Resig
Any links for a donation page to help soften the economic burden of moving to a new provider? Well, I'm not sure what pages are up, or down, right now. But try going to jquery.com - hopefully there'll be something there that'll let you donate :-) --John

[jQuery] Re: Where can I download JQuery Ajax Form plugin

2007-05-07 Thread John Resig
The dev site is down currently, it'll hopefully be back up sometime today. Sorry for the hassle. --John On 5/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I went to this site http://www.malsup.com/jquery/form/#download trying to download the plugin but it looks like the file was moved.

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-04 Thread John Resig
Rey - It's fine to add it, it's a business - we already have a number of other web development/design firms on the list. --John On 5/4/07, Rey Bango [EMAIL PROTECTED] wrote: Hi Kevin, One of the things that we're trying to do on that page is focus on actual consumer driven sites as

[jQuery] Re: Jquery: New app and this article

2007-05-04 Thread John Resig
I don't think he has anything to do with name. Dr. Dobbs is a business-centric programming magazine. They focus completely on .NET and Java. jQuery, generally speaking, doesn't have wide-spread love in corporate environments (it doesn't look like .NET or Java - whereas Dojo and YUI generally

[jQuery] Re: Jquery: New app and this article

2007-05-04 Thread John Resig
. --John On 5/4/07, Matt Stith [EMAIL PROTECTED] wrote: Personally i like the relativaly small community that jQuery has, its easier to identfiy people and the mailing list doesnt get thousands of emails per day. On 5/4/07, John Resig [EMAIL PROTECTED] wrote: I don't think he has anything to do

[jQuery] Re: $(...).children() vs $().childNodes()

2007-04-27 Thread John Resig
If you wanted to do it right, you'd want to do something like this: jQuery.fn.childNodes = function() { return this.pushStack( jQuery.map( this, jQuery.makeArray(a.childNodes) ) ); }; HUGE WARNING! (this is why we don't include this method in jQuery right now) jQuery does not expect itself

[jQuery] Re: Estimated 1.1.3 release date?

2007-04-26 Thread John Resig
I'm hoping soon - I've been quite busy (and sick) - combined with a number of personal issues. I wanna finish it up and get it out ASAP since there's a number of improvements in this release. --John On 4/26/07, MikeR [EMAIL PROTECTED] wrote: Is there any estimated date range? On Apr 26,

[jQuery] Re: Estimated 1.1.3 release date?

2007-04-26 Thread John Resig
John! Wow :) Did not expect you to chime in on this! No problem - I'm busy at the moment, but I still like to watch out for meta-problems (site issues, releases dates, etc.) First thing's first... I bought your book Pro Javascript Techniques (published 2006?).. and my respect and

[jQuery] Re: New Travel Site using jquery

2007-04-25 Thread John Resig
Do you have a URL for us?

[jQuery] Re: jQuery Powered Sites - More Sites Added.

2007-04-19 Thread John Resig
Very very nice work! --John On 4/19/07, Theo Welch [EMAIL PROTECTED] wrote: Hi All, I just completed a Photography exhibit that is within the U.S. National Archives' website. It uses jQuery extensively and has some pretty good photos in it too. :) http://www.archives.gov/exhibits/twww/ It

[jQuery] Re: jQuery 1.1.3a / 1.2 ?

2007-04-19 Thread John Resig
I've been doing a lot of traveling (past 10 days), and now I'm sick. Maybe this weekend, but I'm not completely sure. In your case, I don't think the escaping will solve the : issue - since : denotes a namespace (and I'm fairly certain that it isn't treated identically in all browsers). Travel

[jQuery] Re: Web2.0 Expo

2007-04-18 Thread John Resig
Yep - I'll be there. I'm busy during lunch (and the panel, which is just after lunch). If someone wants to do something in place of the last session/break - let me know! My cell phone # is here: http://ejohn.org/about/ --John On 4/17/07, Erik Beeson [EMAIL PROTECTED] wrote: John is on a

[jQuery] Re: jQuery Powered Sites - More Sites Added.

2007-04-18 Thread John Resig
It doesn't appear to be that significant, considering every major library is located in the same directory as jQuery: http://svn.zope.org/z3c.javascript/trunk/src/z3c/javascript/ --John On 4/18/07, Kenneth [EMAIL PROTECTED] wrote: I am not sure if this qualifies for the list, and I was unable

[jQuery] Re: find.click vs bind(click)

2007-04-17 Thread John Resig
Do you have an example with a full page, there's probably another issue here. --John On 4/17/07, Shelane Enos [EMAIL PROTECTED] wrote: I changed to this: function loadEdit(){ var linkval = $j('#edit').attr(href); $j('#jobinfo').load(linkval); return false; } And added the

[jQuery] Re: IE will not eval this: eval(function(){alert('iesucks')})() Any ideas?

2007-04-15 Thread John Resig
I might be missing something, but this seems like a case where you would want to do this: (new Function(alert('iesucks')))() it's a little cleaner that way too. --John On 4/14/07, Diego A. [EMAIL PROTECTED] wrote: And for those who don't get what's going on...

[jQuery] Re: .find() works in 1.1.2 but not 1.0.4?

2007-04-13 Thread John Resig
Probably the easiest way to duplicate what you're trying to do, in both versions of jQuery, is to wrap the jQuery object in another: y = $(year).find('option:eq(1)').val(); that should protect it. --John On 4/13/07, m3avrck [EMAIL PROTECTED] wrote: Ah yes, I'm trying to make this work in

[jQuery] Re: IE XML parsing problem

2007-04-10 Thread John Resig
Joern committed a patch for this the other day: http://dev.jquery.com/browser/trunk/plugins/metadata/lib/jQuery/metadata.js I hope this helps! --John On 4/10/07, Marshall Salinger [EMAIL PROTECTED] wrote: Diego A. wrote: I've been fighting with this bug too and I believe I've found the

[jQuery] Re: problems with the starterkit

2007-04-05 Thread John Resig
$(#form).reset() should work if it is a correct form. (We attempt to trigger the default event wherever possible.) O wow, I just opened up the starterfile zip - it uses a version of jQuery that's pre-dates jQuery 1.0! Yikes. No wonder the code was acting strange for you. JJ - Try using

[jQuery] Re: Ajax Experience SF

2007-04-04 Thread John Resig
Yeah, neither the price, nor the full schedule has been announced yet. And it appears as if the old conference site is gone. I gave two talks at the last one, here in Boston, and it went quite well. There's lots of talk on libraries, and lots of big-wig presenters (Mozilla, Microsoft, etc.). I

[jQuery] Re: Web2.0 Expo Free Passes and Discounts

2007-04-04 Thread John Resig
planned. John Resig (the father of jQuery) will be on a panel with guys from Dojo, Yahoo, and Google talking about Ajax Frameworks. It should be interesting to see. As a participant in the event, I have a promo code to give out that will get FREE passes to the expo floor and some of the sessions

[jQuery] Re: Something that bugs me about the google groups messages...

2007-04-04 Thread John Resig
There's no options for something like that. I'm not sure why that's happening. --John On 4/4/07, Rick Faircloth [EMAIL PROTECTED] wrote: I'll have to check and see if there's some way in Outlook to stop the addition of the Re: before the subject line... I wonder if there's any way to set

[jQuery] Re: Seperate Ajax

2007-04-02 Thread John Resig
If you only want to call one, then just provide it as the callback to your main Ajax call. .ajaxStart() is designed to work globally, whereas calling .attr() just before you make an Ajax call would work for that immediate call. --John On 4/2/07, ronaldo [EMAIL PROTECTED] wrote: Hi all, I

<    1   2   3   4   5   6