[jQuery] Welcome to Ariel Flesler

2008-05-13 Thread John Resig
Everyone - I'd like to take this opportunity to welcome Ariel Flesler to the jQuery Dev Team. He's put a ton of work in on the upcoming jQuery 1.2.4 release, in addition to releasing numerous plugins. His contributions have been quite valuable and it's an honor to have him aboard. His site:

[jQuery] Re: jQuery TShirt

2008-05-08 Thread John Resig
There's one in the works right now - we're sending it to the producer and will have a store to go along with it. We'll definitely make an announcement when it's ready. --John On Thu, May 8, 2008 at 8:09 AM, CVertex [EMAIL PROTECTED] wrote: I noticed captain John Resig wearing a few nice

[jQuery] Re: Fading image memory leak (what am I doing wrong?)

2008-03-31 Thread John Resig
What version of jQuery are you using? --John On Mar 30, 12:24 am, markie [EMAIL PROTECTED] wrote: Hi,   So I have this script that copies a node, then uses an ajax call to load a new image into the new node. Then once the image is done loading, fades the old image out. After that, it

[jQuery] Re: jQuery.data() woes

2008-03-09 Thread John Resig
$.data() works on pure DOM elements so you would have to do: $.fn.myPlugin = function() { return this.each(function() { console.log($.data($(this).parent().parent()[0])); $(this).blur(function(e) { $.myPlugin.test($(this).parent().parent()[0]); }); } }; OR, with

[jQuery] Re: jQuery on Mozilla rhino

2008-03-03 Thread John Resig
Sounds like you're using an old version of Rhino. --John On Mon, Mar 3, 2008 at 6:16 AM, howa [EMAIL PROTECTED] wrote: Hello, Anyone tried to run jQuery on rhino? I followed John's post, it was okay. However, if I code in Java (since I don't use command line), the env.js cannot be

[jQuery] Re: .is() behaviour

2008-02-21 Thread John Resig
I'm using event delegation (http://www.danwebb.net/2008/2/8/event- delegation-made-easy-in-jquery) to capture events that have bubbled up to the #nav element. It might even make sense to capture clicks that bubble up to the document object. I want to use the .is function to figure out

[jQuery] Re: before() and after() does not work on unclosed tags?

2008-02-21 Thread John Resig
I think you want .wrap(): $(#somediv).wrap('tabletrtd/td/tr/table'); --John On Thu, Feb 21, 2008 at 8:38 PM, jquertil [EMAIL PROTECTED] wrote: hello again... why would this work... $('#somediv').before('I am just text').after('I am also just text'); result: I am just textdiv

[jQuery] Re: A Very jQuery App

2008-02-12 Thread John Resig
Looks great, Brice - keep up the great work! --John On Feb 12, 2008 6:38 PM, Brice Burgess [EMAIL PROTECTED] wrote: I thought I'd write in to let the community know that there's an open source mailing application whose interface is *heavily* based on jQuery. Nearly all JavaScript was

[jQuery] Re: jQuery UI Enchant Alpha Versions Released

2008-02-07 Thread John Resig
Superb, well done team jQuery! The UI stuff is looking smooth. I notice that there are even some significant changes to the innerds of jQuery in v1.2.3. (For instance you've coded the :selectors using functions instead if strings. Has that improved performance?) Not significantly (minor,

[jQuery] Re: Firefox 3 beta

2008-02-07 Thread John Resig
Are you .load()ing HTML with a JavaScript snippet in it? If so, then that's a bug in Firefox 3 and it will be resolved before release. Or you could use jQuery 1.2.2 and newer - which will work with Firefox 3 just fine. --John On Feb 7, 2008 5:01 AM, kenneth [EMAIL PROTECTED] wrote: Hello

[jQuery] jQuery 1.2.3 Released

2008-02-07 Thread John Resig
Hey Everyone - We just released jQuery 1.2.3, more information can be found in the announcement blog post: http://jquery.com/blog/2008/02/08/jquery-123-air-namespacing-and-ui-alpha/ --John

[jQuery] Re: clone(true) still not working in jquery 1.2.3

2008-02-06 Thread John Resig
Why to the jQuery list? jquery-dev is typically where we discuss issues of this matter. --John On Feb 6, 2008 8:47 PM, Eridius [EMAIL PROTECTED] wrote: i have this self.element.children('.cr_tab_content').append(self.element.children('#' + id).clone(true)); and this does nothing but

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

2008-01-29 Thread John Resig
All this info - and more - can be found here: http://jst.pbwiki.com/summary.php --John On Jan 29, 2008 5:38 PM, Geoff Millikan [EMAIL PROTECTED] wrote: 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

[jQuery] jQuery/JavaScript Jobs

2008-01-26 Thread John Resig
Hey Everyone - I just posted a whole bunch of JavaScript/jQuery jobs to my blog, in case anyone is looking for work: http://ejohn.org/blog/javascript-jobs/ Hope this helps! --John

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

2008-01-19 Thread John Resig
You're using an old version of liveQuery - you've gotta upgrade to 1.0.2: http://plugins.jquery.com/project/livequery --John On Jan 19, 2008 1:15 PM, Geoff Millikan [EMAIL PROTECTED] wrote: This has got to be some error on my side but in case it isn't, I'm seeing the below errors in

[jQuery] Re: What is $.data?

2008-01-18 Thread John Resig
More information can be found here: http://docs.jquery.com/Internals/jQuery.data Hope this helps. --John On Jan 18, 2008 11:45 AM, Adam Walters [EMAIL PROTECTED] wrote: Hello, I'm looking through and tracking the code for a jQuery autocomplete plugin (found here:

[jQuery] jQuery 1.1.2 Released: Happy 2nd Birthday!

2008-01-14 Thread John Resig
On the 2nd birthday of jQuery we're happy to bring you a new release of jQuery! Here's the announcement: http://jquery.com/blog/2008/01/15/jquery-122-2nd-birthday-present/ and here's the release notes: http://docs.jquery.com/Release:jQuery_1.2.2 Enjoy - and here's looking forward to another

[jQuery] Re: Birthday is coming

2008-01-11 Thread John Resig
Yep - that's the current plan! --John On Jan 11, 2008 11:12 AM, Cloudream [EMAIL PROTECTED] wrote: is 1.22 going to be release on Jan,14? Seems lots of bugs were fixed.

[jQuery] Re: Can JQuery support iCab 3 (for legacy Mac OS9)

2008-01-08 Thread John Resig
Nope, definitely not. We already don't support anything less than Safari 2 - or IE 5. The only Mac-based browsers we support are Safari 2 + 3, Firefox 2, and Opera 9. --John On Jan 7, 2008 11:49 PM, howa [EMAIL PROTECTED] wrote: We have some users still running OS9, I would like to know if

[jQuery] Re: plugins doesnt show up

2008-01-03 Thread John Resig
You have to have at least one release for the project in order for it to show up. I think Mike is working on a way to circumvent that, but he's busy right now with his new child. For now, just add a release and the plugin will show up. --John On Jan 3, 2008 3:31 AM, Rick [EMAIL PROTECTED]

[jQuery] Re: Suggest to jQuery Ajax

2007-12-27 Thread John Resig
We've already fixed this in jQuery - in fact we've been doing this for quite some time now (using ActiveX instead of the preferred XMLHttpRequest). I assume your problem must lie elsewhere. --John On Dec 27, 2007 7:44 AM, Leandro Vieira Pinho [EMAIL PROTECTED] wrote: Hi Guys, Some months

[jQuery] Help Test jQuery 1.2.2 (beta 2)

2007-12-20 Thread John Resig
Hi Everyone - We've landed about 20 more bug fixes since the previous 1.2.2 beta and we'd like to do a quick sanity check before we go live. http://code.jquery.com/jquery-1.2.2b2.js Please pay special attention to $(document).ready() in Safari 3 and Opera 9, .height() and .width(), and IE

[jQuery] Re: Help Test jQuery 1.2.2

2007-12-19 Thread John Resig
We'll see - we're finishing up some last minute bugs. We have a big change about to land, so we might do a quick beta 2 sanity check before going live. --John On Dec 19, 2007 6:31 PM, cfdvlpr [EMAIL PROTECTED] wrote: Is the full release expected today or tomorrow?

[jQuery] Re: Help Test jQuery 1.2.2

2007-12-17 Thread John Resig
version? I just went through browsing the Wiki and didn't see anything like that On Dec 16, 9:47 pm, John Resig [EMAIL PROTECTED] wrote: Hey Everyone - We just pushed a beta copy of jQuery 1.2.2 live. We'd love for everyone to help test this release and make sure that it's in tip-top

[jQuery] Re: New jQuery release, but what about documentation

2007-12-17 Thread John Resig
The API browser will be updated when 1.2.2 is complete - it's just a beta release right now. As far as the rest: Are you offering to help? We're always looking for volunteers. --John On Dec 17, 2007 9:38 AM, Andy Matthews [EMAIL PROTECTED] wrote: It's all well and good that the jQuery team

[jQuery] Re: Help Test jQuery 1.2.2

2007-12-17 Thread John Resig
Sigh, yes - I'm tired. :-P --John On Dec 17, 2007 10:49 AM, Richard D. Worth [EMAIL PROTECTED] wrote: I assume you meant: http://dev.jquery.com/report/22 - Richard On Dec 17, 2007 9:50 AM, John Resig [EMAIL PROTECTED] wrote: Just the bug list, for now: http://code.jquery.com

[jQuery] Re: parent of this

2007-12-17 Thread John Resig
$(this).parent().slideUp(); On Dec 17, 2007 12:41 PM, Lourenço [EMAIL PROTECTED] wrote: Hello, i need get the this's parent div, something like this: div a href=# class=closeClose/a /div and in code.. $(.class a).click(function(){ $(this div).slideUp(); //here }); that way

[jQuery] Re: .end()

2007-12-13 Thread John Resig
If it's the last function, and you're not chaining anything after it, then no. I tend to do that simply so that I can remember to end my chains properly, but it's not required. --John On Dec 13, 2007 8:58 AM, KidsKilla .grin! wuz here [EMAIL PROTECTED] wrote: Couple times I've seen jQuery

[jQuery] Re: intent of $('selector').title() call

2007-12-12 Thread John Resig
Nope, not in the API anymore, it's equivalent to: .attr(title, errMsg.required) --John On Dec 12, 2007 1:33 PM, howardk [EMAIL PROTECTED] wrote: John's got an example of chaining in his book, Pro JavaScript Techniques, that isn't working for me. More importantly, I don't understand what

[jQuery] Re: Jaiku's jQuery plugs (http://jaiku.com/js/core.js)

2007-12-12 Thread John Resig
Good find - some real interesting code in there. --John On Dec 13, 2007 1:18 AM, R. Rajesh Jeba Anbiah [EMAIL PROTECTED] wrote: (I'm posting this as Google returns no result http://groups.google.com/groups?q=jquery+jaiku ) FWIW, recently I've seen Jaiku's jQuery codes/plugins; they're

[jQuery] Re: tutorial code doesn't work :-(

2007-12-12 Thread John Resig
Not sure exactly - did you remember to put it in a $(document).ready(function(){ ... }) block? --John On Dec 12, 2007 3:31 AM, priti [EMAIL PROTECTED] wrote: hi, I am relatively new in jquery.I just installed and was sailing thru tutorial.But somehow i was not able to run following code

[jQuery] Re: Why is removeAttr necessary? (Instead of overwriting with attr)

2007-12-09 Thread John Resig
Do you have some example code? That shouldn't fail for any particular reason. --John On Dec 9, 2007 4:30 AM, Kim Johnson [EMAIL PROTECTED] wrote: Hi folks, I just spent the last hour trying to figure out why a piece of jquery wasn't working, and finally tracked it down to inaccurately

[jQuery] Re: Why is removeAttr necessary? (Instead of overwriting with attr)

2007-12-09 Thread John Resig
sometimes changing, mostly not, so I think I inaccurately assumed it was a jquery problem. thanks! -kim --- John Resig [EMAIL PROTECTED] wrote: Do you have some example code? That shouldn't fail for any particular reason. --John On Dec 9, 2007 4:30 AM, Kim Johnson [EMAIL

[jQuery] Re: Using $(this) in :has()

2007-12-09 Thread John Resig
Try this, instead: $(.trigger).click(function () { $(this).parents(.container).hide(slow); }); That should get you what you're looking for. --John On Dec 9, 2007 7:53 PM, ebakunin [EMAIL PROTECTED] wrote: I am having trouble understanding how to use $(this) in a function. I would like

[jQuery] Re: Making a jQuery plugin

2007-12-06 Thread John Resig
Do $.extend instead of $.fn.extend to get the result that you want. --John On Dec 6, 2007 4:02 PM, Eridius [EMAIL PROTECTED] wrote: Ok, I have looked at other code and still get get it to work (function($) { $.fn.extend( { paginator: function(options) {

[jQuery] Re: new jARIA plugin

2007-12-04 Thread John Resig
Chris - This is some fantastic work. I want to get this into SVN right away and begin expanding on it. The first major improvement, that I can see, would be to allow for $(:role) and $(:role(checkbox)) selectors, as opposed to the current filters. Also, you might want to adjust how you set the

[jQuery] Re: $(document).ready still fires too early in svn trunk (rev 4000)

2007-12-02 Thread John Resig
If you're having issues in Opera, then I assume that there's something else at play here, since we're just using the native DOMContentLoaded event that they trigger. Do you have a simple page online, anywhere, that demonstrates the issue? --John On Dec 3, 2007 12:59 AM, moe [EMAIL PROTECTED]

[jQuery] Re: 1.2.2

2007-11-27 Thread John Resig
http://docs.jquery.com/Frequently_Asked_Questions#When_will_jQuery_1.2.2_be_released.3F On Nov 27, 2007 10:46 AM, KidsKilla [EMAIL PROTECTED] wrote: Hi All! Can you answer me a question, when it is planned to release the version 1.2.2?

[jQuery] Re: Jquery call strips away script tags

2007-11-26 Thread John Resig
If you inject the string into the document (which both load and append do) the scripts will be executed and then removed. Is there any particular reason why you want the script elements? --John On Nov 26, 2007 12:49 PM, RR_QQ [EMAIL PROTECTED] wrote: Hello! have a jquery ajax call that

[jQuery] Re: Future jQuery structure?

2007-11-11 Thread John Resig
You should re-post this to the jquery-ui list, I know that they've been thinking about this issue, a lot, over there. --John On Nov 11, 2007 4:09 AM, Cloudream [EMAIL PROTECTED] wrote: jQuery -Core -UI --Mouse interaction --Widgets --Theme -Fx -Plugins

[jQuery] Re: This jQuery mailing list

2007-11-11 Thread John Resig
Uh - how active were you expecting it to be? We're currently averaging 70-100 posts per day (depending on the day of the week) - which makes it the most active mailing list of any JavaScript library - by far. --John On Nov 11, 2007 1:06 PM, herbasher [EMAIL PROTECTED] wrote: I read somewhere

[jQuery] Re: SITE: http://www.bankofamerica.com/

2007-11-09 Thread John Resig
Woah! Maybe they won't charge me all my overdraft fees now :-x One can dream! --John On Nov 9, 2007 9:36 PM, Andy Matthews [EMAIL PROTECTED] wrote: HOLY CRAP! My wife was in our BoA account this evening and they had some nice AJA and JS based interaction going on. So I thought it would be

[jQuery] Re: Spam - not a complaint, more an observation

2007-11-07 Thread John Resig
jquery-ui is not - which is why a whole mess made it through. We'll have to start filtering that one as well, unfortunately. --John On 11/7/07, Michael Price [EMAIL PROTECTED] wrote: I've noticed a steady increase in the amount of spam coming through to the jQuery lists I'm subscribed to

[jQuery] Re: Advanced Problem - Any takers? (Repost - didn't seem to show up)

2007-11-03 Thread John Resig
We'll need to see a page to know what's going on - that code, alone, shouldn't cause problems. --John On 11/3/07, ja [EMAIL PROTECTED] wrote: I'm dynamically inserting html into a page that only contains an image. Such as... html body img src=http://my_domain.com/my_image.jpg/ /body

[jQuery] Re: Site Submission: ministryofsound.com

2007-10-31 Thread John Resig
That's exciting - I love the albums that Ministry of Sound puts out. I think my last.fm page captures that pretty well ;-) http://www.last.fm/user/jeresig --John On 10/31/07, Sam Sherlock [EMAIL PROTECTED] wrote: The world Famous Club venue Ministry of Sound is using jQuery slide toggles,

[jQuery] Re: How to upgrade from JQuery 1.0 to 1.2 without changing the existing code?

2007-10-31 Thread John Resig
You need to include 1.1.4, then the 1.0 compat plugin (which will make the API look like the jQuery 1.0.* API). --John On 11/1/07, Channa L. [EMAIL PROTECTED] wrote: Thanks to Glen and Karl. Currently, I'm using JQuery 1.0.3. And the plug-ins I use are, auto.complete, bgiframe, cookie.js,

[jQuery] Re: jQuery 1.2 benchmark

2007-10-29 Thread John Resig
[lang=en] On 10/29/07, Lauris Bukšis-Haberkorns [EMAIL PROTECTED] wrote: Hi, lang selector could be useful Lafriks On 10/29/07, Jeffrey Kretz [EMAIL PROTECTED] wrote: Lafriks, Hello and welcome to the forum. What features would you like to see in jQuery that are missing?

[jQuery] Re: jQuery 1.2 benchmark

2007-10-26 Thread John Resig
Really? It runs really fantastic in IE, for me. --John On 10/26/07, Lauris Bukšis-Haberkorns [EMAIL PROTECTED] wrote: Has anyone seen this one? http://alexandre-mercier.vinnac.org/slickspeed/ jQuery does not perform that well there. Lafriks

[jQuery] Re: [NEWS:] Learning jQuery on Slashdot!

2007-10-25 Thread John Resig
Yeah, both of these posts are really excellent - quite exciting! --John On 10/24/07, polyrhythmic [EMAIL PROTECTED] wrote: Get ready for the onslaught... There's a quality (especially for /.) Learning jQuery book review on Slashdot.

[jQuery] Re: Google Analytics Tracking With jQuery

2007-10-25 Thread John Resig
Very cool! This seems quite useful. Do you have any examples it in action? --John On 10/25/07, jason [EMAIL PROTECTED] wrote: I've been working on a jQuery plugin to simplify the process of adding Google Analytics tracking to a page. The bulk of the code came together pretty quickly, but

[jQuery] Re: MIT Licence question very important for everyone

2007-10-24 Thread John Resig
No, MIT only applies to the jQuery library itself - you do NOT have to license your library under that license. The only stipulation is that you include the copyright notice in the jQuery library file. --John On 10/24/07, Ecommercant [EMAIL PROTECTED] wrote: Hi One very important question

[jQuery] Re: get(0)

2007-10-22 Thread John Resig
You've got me! What does that do? Where is it from? --John On 10/22/07, Thierry [EMAIL PROTECTED] wrote: hey, im new to jquery, and im wondering what this does: this.node.get(this[0]).onreadystatechange = function () somehow, google groups missed my first post on this

[jQuery] Re: Mystery jquery attribute and behavior...

2007-10-22 Thread John Resig
My guess: You're doing an Ajax call which is loading an HTML chunk that's also pulling in a fresh copy of jQuery and re-applying the even/odd styling. --John On 10/22/07, Deane [EMAIL PROTECTED] wrote: I'm using jquery to zebra-stripe some tables. On one page, the jquery consistently

[jQuery] Re: Problem with ajax in jquery.(Unable to figure this out)

2007-10-19 Thread John Resig
You forgot to put a $(document).ready(function(){ }); Around your code. --John On 10/19/07, VJ [EMAIL PROTECTED] wrote: I am unable to get the ajax to work in jquery. Whenever i pass a .php url to $.ajax. it does not return and none of the callbacks are executed. It justt hangs with no

[jQuery] Re: Self-directed Animations

2007-10-17 Thread John Resig
see: http://docs.jquery.com/Release:jQuery_1.2/Effects#Extensible_Animations It sounds like that might solve the issue for you. --John On 10/17/07, oravecz [EMAIL PROTECTED] wrote: It's fine that jQuery has all of these great built-in animation routines, but I have a situation where I want

[jQuery] Re: [Announce]: jQuery and John Resig featured on InfoWorld

2007-10-05 Thread John Resig
that I'd like to strive for, but it's unclear as to when it will actually come to fruition. (As it would require additional time, effort, people, and resources - all of which are quite scare.) --John On 10/5/07, Karl Swedberg [EMAIL PROTECTED] wrote: Hey folks, Looks like John Resig

[jQuery] Re: [Site Submission]: nbc.com

2007-10-04 Thread John Resig
Maybe we can get John on Jay Leno... That would be the most boring late night interview, ever. :-P --John

[jQuery] Re: Using multiple versions of jQuery on the same page

2007-10-03 Thread John Resig
Yep, you can do .noConflict(true) which completely blows away both $ and jQuery. So, in your case, you would do: var veryjQuery = jQuery.noConflict(true); --John On 10/4/07, Glen Lipka [EMAIL PROTECTED] wrote: We are making a jQuery+stuff script that will go on lots of random pages with

[jQuery] Re: Events

2007-10-01 Thread John Resig
The only set of X/Y properties that jQuery supports is pageX/pageY, which, I think, will help you out. More information: http://docs.jquery.com/Events_%28Guide%29#event.pageX.2FY --John On 10/1/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I want to access the event properties layerX and

[jQuery] Re: inconsistent processing for xml vs html

2007-09-29 Thread John Resig
Could you submit a ticket for this? Thanks! http://dev.jquery.com/ --John On 9/28/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: In jQuery 1.2.1, line 783 does this: div = doc.createElement(div) The attributes that Firefox 2.0.0.7 creates for div are different depending on

[jQuery] Re: jquery 1.2 unbind problem

2007-09-29 Thread John Resig
That's correct - there's a ticket open on it (the default handler isn't released, for some reason). We haven't figured out if this only occurs on the document or if it occurs on all elements yet - but for now, it only seems to happen on the document. Here's the ticket:

[jQuery] Re: MooTools $events expando workaround

2007-09-28 Thread John Resig
This was fixed in jQuery version 1.2 (and newer). Using that version of the library shouldn't cause you any problems. --John On 9/28/07, Ayan [EMAIL PROTECTED] wrote: Dear sir, I am facing this problem... yes, its because mootool+jQuery. My Joomla site's Template system runs on mootool,

[jQuery] Re: Documentation / API

2007-09-28 Thread John Resig
So what's going on with this? Whilst I know it's a huge job and takes time, the current docs are just plain inadequate. It used to be so much better. And there's no linking between related functions. I realise it's a wiki, but there's no information on how to go about editing it and it's

[jQuery] Re: Did I get *all* of the XPath plugin?

2007-09-28 Thread John Resig
to my external .js library to fully include the Xpath plugin? /* * Simple XPath Compatibility Plugin for jQuery 1.1 * By John Resig * Dual licensed under MIT and GPL. */ (function(jQuery){ var find = jQuery.find; jQuery.find = function(selector, context

[jQuery] Re: When will the API be updated for 1.2.1?

2007-09-28 Thread John Resig
On 9/28/07, Juha Suni SC [EMAIL PROTECTED] wrote: In the meanwhile it would help tremendously if the documentation and API links were consistent in where they point to, and the 1.2 api in the wiki was easy to find. FYI: The 1.2 API in the wiki is at: http://docs.jquery.com/Core (or by

[jQuery] Re: uhhh.......WAT?

2007-09-27 Thread John Resig
Do you have a page online somewhere with what you're trying to do? The most common mistake, when beginning, is to forget a $(document).ready(function(){ ... }) around your code (causing it to execute too early). --John On 9/27/07, cmbtrx [EMAIL PROTECTED] wrote: OK, forgive my tone here...I'm

[jQuery] Re: Unexcpected Quantifier in IE6 (1.2.1 SVN)

2007-09-26 Thread John Resig
Could you bring this up on the dev list, along with a case where it occurs? Thanks! http://groups.google.com/group/jquery-dev --John On 9/25/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: The problem is occurring on line 822 (from the current SVN code), /^\[ *(@)([a-z0-9_-]*) *([!*$^=]*)

[jQuery] Re: ANNOUNCEMENT: Chili 1.9 much faster

2007-09-26 Thread John Resig
Excellent to hear! I've been using it in personal projects, so any speed improvement is a welcome one! --John On 9/26/07, Andrea Ercolino [EMAIL PROTECTED] wrote: Chili is now much faster than before. Try it! http://noteslog.com/post/chili-19-released-today/ -- View this message in

[jQuery] Re: jQuery().evalScripts is not a function (AjaxFileUpload and jquery 1.2)

2007-09-25 Thread John Resig
Sure, use the 1.1 compatibility plugin: http://dev.jquery.com/browser/trunk/plugins/compat-1.1/jquery.compat-1.1.js?format=txt --John On 9/25/07, deerchao [EMAIL PROTECTED] wrote: Hi, I'm using AjaxFileUpload from http://www.phpletter.com/Demo/AjaxFileUpload-Demo/ , which is listed in the

[jQuery] Re: Why doesn't jQuery complete animations smoothly?

2007-09-24 Thread John Resig
In your code you're modifying the .html() of contents twice after the animation has already started. If you do a show animation (like what .show() and .sildeDown() do) then they do a calculation animating the height to auto - if that height changes after the animation has already begun then there

[jQuery] Re: Partial .load()

2007-09-24 Thread John Resig
If you only want the children, just use a child selector: $(#topic).load(help.html #topic-example *); The other selector mentioned #topic-example * will get you all descendants, which will certainly give you strange results. --John On 9/24/07, Smith, Allex [EMAIL PROTECTED] wrote: I'm

[jQuery] Re: Ajax Experience Boston : jQuery Camp 2007 - Location Times?

2007-09-24 Thread John Resig
Right now we're probably looking at 9am to 5pm at Harvard University. We're still waiting on a final confirmation from them, so that's not absolutely final yet. If that doesn't work out, then it'll probably be down the road at MIT. After 5 we'll probably do dinner/drinks at a local

[jQuery] Re: .replaceWith() broken in Firefox 2 I think

2007-09-24 Thread John Resig
Are you meaning to do .html(..) instead of replaceWith? replaceWith completely removes the element (which means that when it's called the second time, nothing happens, since the element no longer exists). Whereas .html() simply replaces the contents of the element. --John On 9/24/07, Steve

[jQuery] Re: $('#foo') failing

2007-09-22 Thread John Resig
You're forgetting to use $(document).ready(function(){ ... }); around our code, causing it to execute too early (and, thus, work in Firebug since it's executing very late). --John On 9/20/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have a webapp that uses JQuery (version 1.2) for doing

[jQuery] Re: Verizon Wireless website using jQuery?

2007-09-20 Thread John Resig
Nope, it's MooTools. --John On 9/20/07, Josh Nathanson [EMAIL PROTECTED] wrote: Spotted in the wild? - Go to http://www.verizonwireless.com - Look at your Firebug Script tab, find the script gn_engine.js That packed script looks suspiciously familiar...and it's 27K ?

[jQuery] Re: contains() with a jquery object reference (form field)

2007-09-19 Thread John Resig
Like so: $(#sqltable tr td:contains( + $('#workgroup').val() + )).toggleClass(highlight); --John On 9/19/07, Graeme B. Davis [EMAIL PROTECTED] wrote: I'm trying to highlight some rows of a table, and previously did this with the following code:

[jQuery] Re: ScrollTo

2007-09-19 Thread John Resig
jQuery has scrollTo built straight into core: $(html,body).animate({ scrollTop: 400 }); or to scroll to a specific element, do: $(html,body).animate({ scrollTop: $(#elem).offset().top }); More info and demo: http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery-12 --John On

[jQuery] Re: Jquery in the BBB

2007-09-19 Thread John Resig
That's exciting! Are there any URLs where we can see the results, when they launch? --John On 9/19/07, Anthony Leboeuf(Worcester Wide Web) [EMAIL PROTECTED] wrote: I'm doing the back end programming for the new BBB websites launching at the beginning of next month, they are rocking Jquery

[jQuery] Re: UI Photo Demo on Safari

2007-09-19 Thread John Resig
David Duncan - Thanks for the feedback! UI-specific stuff should head to the jQuery UI list: http://groups.google.com/group/jquery-ui --John On 9/19/07, Duncan Heal [EMAIL PROTECTED] wrote: Hi David I've heard somewhere that they are working on it. I think they're also discouraging posts

[jQuery] Re: jquery looping is slow

2007-09-19 Thread John Resig
Also, it's possible your initial selection is slow. I imagine having tbody in there isn't helping at all, and is probably making it slower. #tableId tr or even better, #tableId tbody tr would probably be faster. The shorter the selector, the faster it is and every time you see a space, , +,

[jQuery] Re: getJSON doesnt remove script.../script

2007-09-19 Thread John Resig
How so? I see this line in the jQuery source: head.removeChild( script ); Once the script is finished loading the script tag is then removed. --John On 9/19/07, Tom [EMAIL PROTECTED] wrote: Ive noticed that $.getJSON never attempts to remove the script tags it inserts. Is this a bug or by

[jQuery] Re: IE shows nothing o.0

2007-09-19 Thread John Resig
Do you have a full page online that we can look at? That line, alone, shouldn't cause any problems. --John On 9/19/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi there, im new at jQuery and totaly new with JavaScript. But there is a huge Problem with jQuery an IE. To include jQuery i

[jQuery] Re: potential bug with .val() in 1.2.1

2007-09-18 Thread John Resig
What kind of error did you receive and in what browser? What type of element were you clicking to cause this error to occur? In the future, you should bring bugs like this up for discussion on the jquery-dev mailing list: http://groups.google.com/group/jquery-dev --John On 9/18/07, oliver

[jQuery] Re: jQuery 1.2.1 is auto evaling scripts from AJAX before DOM is ready

2007-09-18 Thread John Resig
There was another issue who was having the same problem as you, with 1.2.1, I recommend doing this inside your script, at least until I can get a fix in. script type=text/javascriptsetTimout(function(){ ... your code ... }, 13);/script --John On 9/17/07, benjam [EMAIL PROTECTED] wrote: I

[jQuery] Re: ui tabs inside ui tabs

2007-09-18 Thread John Resig
You should bring this up on the jQuery UI mailing list: http://groups.google.com/group/jquery-ui --John On 9/18/07, Justin Sepulveda [EMAIL PROTECTED] wrote: I'm sure there's something simple i'm missing here. http://www.robustness.org/temp/tabs/tester.html When you click on the second

[jQuery] Re: jQuery UI praises and questions

2007-09-17 Thread John Resig
Good call - I just went back and added dependency information to all the components - yes, it's possible to use them separately. I'll have to flush out the docs on this some more, once I'm awake. --John On 9/17/07, David Duymelinck [EMAIL PROTECTED] wrote: Great work on the jQuery UI, I take

[jQuery] Announce: jQuery UI 1.0 Released

2007-09-17 Thread John Resig
Hi Everyone - We just pushed the brand-new jQuery UI 1.0 out the door. The full release notes: http://jquery.com/blog/2007/09/17/jquery-ui-interactions-and-widgets/ The jQuery UI site: http://ui.jquery.com/ Enjoy! Reminder: We have a jQuery UI mailing list, if you're interested in discussing

[jQuery] Re: idea to track plugin updates: myJquery.com

2007-09-17 Thread John Resig
Why not help to add that to the main jQuery plugin repository? We already have all the plugins and the full application, you could write the tracking feature and get it in. --John On 9/17/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hi all, This email presents a suggestion for a

[jQuery] Re: jQuery UI demos: minor bug in Tabs demo?

2007-09-17 Thread John Resig
Please post this to the jQuery UI list, instead of the main list: http://groups.google.com/group/jquery-ui --John On 9/17/07, Stephan Beal [EMAIL PROTECTED] wrote: Hiya! http://ui.jquery.com/ i'm looking through the Tabs demo (nice stuff) and i noticed that the Ajax tabs demo appears to

[jQuery] Re: jQuery 1.2 Release Notes on IE6

2007-09-17 Thread John Resig
We just changed the layout - you'll need to clear your cache to remove the old CSS file. --John On 9/17/07, EdMartin [EMAIL PROTECTED] wrote: Is it just me or is the left hand column of the New Features section invisible on IE6? It doesn't appear to be an instance of the peekaboo bug

[jQuery] Re: Announce: jQuery UI 1.0 Released

2007-09-17 Thread John Resig
What's the preferred method for feedback? Via the jQuery UI mailing list. http://groups.google.com/group/jquery-ui --John

[jQuery] Re: Announce: jQuery UI 1.0 Released

2007-09-17 Thread John Resig
Are all the plugin released under the MIT license or do each plugin have thier own license? They should all be dual-licensed under the MIT and GPL. --John

[jQuery] Re: How do you tie sortables into the back-end with ajax?

2007-09-17 Thread John Resig
Are you talking about jQuery UI? If so, you should bring it up for discussion on the jQuey UI mailing list: http://groups.google.com/group/jquery-ui --John On 9/17/07, cliff [EMAIL PROTECTED] wrote: List sorter functionality is way cool, but isn't very useful unless I can tie it into the

[jQuery] Re: jQuery source code readability

2007-09-16 Thread John Resig
I've already done some work to improve the readability of variable names, you'll see the results of that in jQuery 1.2.1. But, as far as the second and third points go, we don't plan on making changes in that respect, any time soon. In the future, you should makes posts like this to the jQuery

[jQuery] Re: jQuery UI already released?

2007-09-16 Thread John Resig
We're getting close! We're furiously working our fingers to the bones. Look for a full release tonight. --John On 9/16/07, Rodrigo Moraes [EMAIL PROTECTED] wrote: On 9/16/07, ivor.horton wrote: it is mentioned that jQuery UI will be released in 2007.09.16 in the jQuery blog, right? and

[jQuery] Re: Does jquery1.2 support easing plugin 1.1.1

2007-09-15 Thread John Resig
How so? It works great for me - I've used it in all of my tests, for example: http://dev.jquery.com/~john/ticket/fx-rewrite2/ --John On 9/15/07, joomlafreak [EMAIL PROTECTED] wrote: I use easing plugin in many places but it seems the version 1.2 of jQuery does not support this plugin. Does

[jQuery] Re: jQuery camp: any closer to a location decision?

2007-09-15 Thread John Resig
It's very likely that this will be taking place at Harvard University, thus, it'll be on any number of bus and subway lines, making for easy transportation. --John On 9/15/07, Su [EMAIL PROTECTED] wrote: Or at any rate, something a little narrower than two possible cities? *grin* I want to

[jQuery] Re: BUG ? cannot detect the id with :

2007-09-13 Thread John Resig
See: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F --John On 9/13/07, Adwin Wijaya [EMAIL PROTECTED] wrote: Hi :) I am glad you are reache version 1.2 :) that's awesome .. but I would like to report the bug, it seems

[jQuery] Re: No such interface supported error in Internet Explorer

2007-09-13 Thread John Resig
You can't load content from a remote domain like that, the content has to be on the same domain as the request. --John On 9/13/07, 0xCAFE [EMAIL PROTECTED] wrote: I have experimented once more with ajax and jquery. Tried to do thing even simpler, so instead of using $.ajax, I used $

[jQuery] Re: Does .ready() waits for .getScript() ?

2007-09-13 Thread John Resig
Nope, I wasn't able to get it in for this release. You'll have to add additional checks in the callbacks to make sure that they are loaded in the correct order, and before the document ready callback is called. --John On 9/13/07, Joan Piedra [EMAIL PROTECTED] wrote: Hey jquerians, I'm trying

<    1   2   3   4   5   6   >