[jQuery] $.merge() can be used on object?

2006-10-07 Thread Jacky
I'm trying to do some dynamic drop down with pre-filled array. Option1 would trigger new options in Option2. Option2 would trigger new options in Option3. (and so on...) In matchOptions(), I would like to use $.merge to add matched items without duplication. But it seems that it cannot be done.

Re: [jQuery] Interface Elements Autocomplete plugin problems...

2006-10-07 Thread Stefan Petre
Rich Manalang wrote: Hi. I just started using the Interface Elements Autocomplete plugin (http://interface.eyecon.ro/docs/autocomplete) for a web app I support. It works great on IE/Firefox (win) under most circumstances. However, on Firefox, when document.domain is set, it fails to work. I

Re: [jQuery] .each backwards ?

2006-10-07 Thread Michael Geary
From: Dossy Shiobara I'm surprised there's no .reverse(). i.e.: $(collection).reverse().each(...) Great idea! How about the world's smallest plugin: jQuery.fn.reverse = [].reverse; Try it out at http://jquery.com/ by entering these lines into the FireBug console:

[jQuery] New plugin: sparkline

2006-10-07 Thread Franck Marcia
Hi all, I've released a new plugin: sparkline. A sparkline is an inline graphic (http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001ORtopic_id=1). I borrowed the idea (and most of the code) from the TiddlyWiki project, a very good one-page wiki (http://www.tiddlywiki.com). Thanks to

Re: [jQuery] .each backwards ?

2006-10-07 Thread kenton.simpson
Thanks for the Idea. This works jQuery.fn.reverse = function() { this.pushStack(this.get().reverse()); return this; } a long that thread a lot more resorting function may be useful. -- View this message in context: http://www.nabble.com/.each-backwards---tf2399145.html#a6693603 Sent from

Re: [jQuery] .each backwards ?

2006-10-07 Thread Jörn Zaefferer
kenton.simpson schrieb: Thanks for the Idea. This works jQuery.fn.reverse = function() { this.pushStack(this.get().reverse()); return this; } Nice. That is a better approach then just doing jQuery.fn.reverse = [].reverse. -- Jörn ___

Re: [jQuery] Cheat Sheet?

2006-10-07 Thread Karl Swedberg
On Oct 6, 2006, at 11:41 PM, Rey Bango wrote: I recall a JQuery cheat sheet floating around. Anyone have the link to that? Hi Rey, They came from Nilesh Patel. PDF http://www.define-web.com/jquery_cheat_sheet/ jquery_cheat_sheet_080306_v1.pdf http://www.define-web.com/jquery_cheat_sheet/

Re: [jQuery] jQuery and Prototype

2006-10-07 Thread Jörn Zaefferer
Jan Rosa schrieb: Hello, I think there i no need to replace $ in next release. You can employ server searchreplace Look at example: http://www.freshconcept.cz/uschovna/jQueryIsolate.phps then you use: script type=text/javascript

Re: [jQuery] New plugin: sparkline

2006-10-07 Thread Karl Swedberg
On Oct 7, 2006, at 6:56 AM, Franck Marcia wrote: I've released a new plugin: sparkline. A sparkline is an inline graphic (http://www.edwardtufte.com/bboard/q-and-a-fetch-msg? msg_id=0001ORtopic_id=1). I borrowed the idea (and most of the code) from the TiddlyWiki project, a very good

Re: [jQuery] .each backwards ?

2006-10-07 Thread John Resig
jQuery.fn.reverse = function() { this.pushStack(this.get().reverse()); return this; } Huh, at first I though that that code would infinitely recurse, I totally forgot that .get() returns a clean array of elements - good call! Just a quick simplification: jQuery.fn.reverse = function() {

Re: [jQuery] New plugin: sparkline

2006-10-07 Thread John Resig
Back in the day I wrote some sparkline code myself: http://ejohn.org/apps/jspark/ This particular one uses the Canvas element (giving it a nice antialias). My code looks kind of scary, in retrospect, but it seems like it wouldn't be too bad to give it a jQuery facelift. Franck - Doing a quick

Re: [jQuery] Cheat Sheet?

2006-10-07 Thread Rey Bango
Awesome! Thanks Karl! Karl Swedberg wrote: On Oct 6, 2006, at 11:41 PM, Rey Bango wrote: I recall a JQuery cheat sheet floating around. Anyone have the link to that? Hi Rey, They came from Nilesh Patel. PDF http://www.define-web.com/jquery_cheat_sheet/

Re: [jQuery] .each backwards ?

2006-10-07 Thread kenton.simpson
I agree, do you think .sort() and .reverse() could be added to core jQuery object in the future, or should I just add a plugin. -- View this message in context: http://www.nabble.com/.each-backwards---tf2399145.html#a6694292 Sent from the JQuery mailing list archive at Nabble.com.

Re: [jQuery] ScrollTo FX with a IFRAME

2006-10-07 Thread zelda2
I still could use some help with this guys - does anyone know how I would call the ScrollTo plugin from one page to another? Thanks - AR zelda2 wrote: I?ve been trying to figure this out for days and no luck. I?m trying to use the ScrollTo (Interface) plugin to control the scrolling

Re: [jQuery] Forms and the fx module

2006-10-07 Thread Brandon Aaron
My site was down ... but it is back up now ... sorry about that. I seem to be having issues with Mongrel and/or Typo :/ BTW ... you can just grab the full jQuery revision 404 with the patch from here: http://brandonaaron.net/jquery/opacity/jquery.opacitypatch.js to make sure it works for you

Re: [jQuery] Forms and the fx module

2006-10-07 Thread Matt Stith
am i the only one that read that as revision not found?... anyways, great job! On 10/7/06, Brandon Aaron [EMAIL PROTECTED] wrote: My site was down ... but it is back up now ... sorry about that. I seem to be having issues with Mongrel and/or Typo :/ BTW ... you can just grab the full jQuery

Re: [jQuery] New plugin: sparkline

2006-10-07 Thread Franck Marcia
@ Karl: thank you for the info. @ John: I will take a look at canvas; I missed your implementation but now, I will certainly borrow some parts ;-) Cheers, Franck. 2006/10/7, John Resig [EMAIL PROTECTED]: Back in the day I wrote some sparkline code myself: http://ejohn.org/apps/jspark/ This

Re: [jQuery] .each backwards ?

2006-10-07 Thread Michael Geary
jQuery.fn.reverse = function() { this.pushStack(this.get().reverse()); return this; } Nice. That is a better approach then just doing jQuery.fn.reverse = [].reverse. I'm curious, what is the advantage of one approach over the other? -Mike

Re: [jQuery] .each backwards ?

2006-10-07 Thread John Resig
On 10/7/06, Michael Geary [EMAIL PROTECTED] wrote: jQuery.fn.reverse = function() { this.pushStack(this.get().reverse()); return this; } Nice. That is a better approach then just doing jQuery.fn.reverse = [].reverse. I'm curious, what is the advantage of one approach over

Re: [jQuery] search for id with '/' character

2006-10-07 Thread Su
I'm curious: Why is everybody trying to fix the selector problem, rather than pointing out the ID is invalid in the first place? Dexter: Get rid of the slash altogether. Problem solved. You might be able to work around this with the various suggestions others have made, but if your document

Re: [jQuery] .each backwards ?

2006-10-07 Thread John Resig
Oops, I meant to make that: jQuery.fn.unshift = jQuery.fn.add; The issue is, however, that fundamentally .push() or .unshift() won't work as expected, since adding an item to a jQuery object isn't like adding a item to a normal array. The jQuery object is more like a 'Set' than it is a true

Re: [jQuery] .each backwards ?

2006-10-07 Thread John Resig
I agree, do you think .sort() and .reverse() could be added to core jQuery object in the future, or should I just add a plugin. Sort, reverse, and splice are definitely possible - maybe for the 1.1 release. --John ___ jQuery mailing list

Re: [jQuery] New plugin: sparkline

2006-10-07 Thread Ⓙⓐⓚⓔ
I am a total sucker for images without files! I really like the use of a tiny inline image with different bg colors. I experimented with inline images in an atom feed... it didn't work for all feed readers! I also like the canvas method that John used, I look forward to your merged version! On

Re: [jQuery] downloading plugins?

2006-10-07 Thread Mike Alsup
Todd, Just tack ?format=txt on to the end of the url. For example, http://jquery.com/dev/svn/plugins/form/form.js?format=txt Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] search for id with '/' character

2006-10-07 Thread Su
Ah. Blame someone else. I see *grin* It /is/ convenient that jQ can deal with this; I just found it strange no one had at least pointed it out. Workarounds are nice, but the *real* problem is that the HTML is just wrong, and that should be addressed first, if at all possible. Ⓙⓐⓚⓔ wrote: I

Re: [jQuery] downloading plugins?

2006-10-07 Thread Todd Menier
Awesome, thanks so much!On 10/7/06, Mike Alsup [EMAIL PROTECTED] wrote: Todd,Just tack ?format=txt on to the end of the url.For example,http://jquery.com/dev/svn/plugins/form/form.js?format=txt Mike___jQuery mailing

Re: [jQuery] Performance question

2006-10-07 Thread George Adamson
Saw you had no responses so here's a couple of suggestions... An easy performance booster is to use the second param in $() to set a context for the search. Eg: $(DIV.myClass, myParentElement). Perhaps this is what you meant when you mentioned 'getting a parent element' ? Chaining methods is

[jQuery] Drop down menu

2006-10-07 Thread TJ
Hi, I am trying to make a drop down menu. I have half of it but I need a sub menu off to the left. I am using this jquery code. $(document).ready(function(){ $(#nav-one li).hover( function(){ $(ul, this).fadeIn(slow); },

Re: [jQuery] Interface Elements Autocomplete plugin

2006-10-07 Thread Rich Manalang
Yep... the page that has the autocompleter is on the same domain as the XML source. Rich ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Performance question

2006-10-07 Thread Karl Swedberg
On Oct 7, 2006, at 3:39 PM, George Adamson wrote: An easy performance booster is to use the second param in $() to set a context for the search. Eg: $(DIV.myClass, myParentElement). Perhaps this is what you meant when you mentioned 'getting a parent element' ? Chaining methods is helpful

[jQuery] Broken Build

2006-10-07 Thread Jörn Zaefferer
Hi folks, the current build script seems to be broken: Only the ajax part of the complete jQuery file is parsed, resulting in a lite version with only ajax docs removed and api docs and tests with only ajax docs/tests. Doing some diff debugging by comparing revisions of the files involved

Re: [jQuery] New plugin: sparkline

2006-10-07 Thread Franck Marcia
2006/10/7, John Resig [EMAIL PROTECTED]: Franck - Doing a quick check to see if the user is using IE, or not, you could be able to use the Canvas element no problem. OK, I did it. Same address: http://fmarcia.info/jquery/sparkline/sparkline.html However, just one color in this case as it

[jQuery] jquery update causes js error

2006-10-07 Thread Stephen Woodbridge
Hi all, New to jquery and list, but I looked through the archives and didn't see anything that help. I have a page that is working under jquery.js /* Built Fri May 12 13:01:23 2006 */ * $Rev: 29 $ but I upgraded to jquery-latest.js and todays jquery-svn.js and both of these give me an error

Re: [jQuery] Performance question

2006-10-07 Thread Jacky
Would caching the jQuery object a help too? Sometimes you just can't keep the chain. e.g. var jqObj = $(#abc); On 10/8/06, Karl Swedberg [EMAIL PROTECTED] wrote: On Oct 7, 2006, at 3:39 PM, George Adamson wrote: An easy performance booster is to use the second param in $() to set a context

Re: [jQuery] Broken Build

2006-10-07 Thread Brandon Aaron
I just did a new checkout and did a make pack and everything seems to be okay. I ran a few of my example pages with it and didn't get any errors. -- Brandon Aaron On 10/7/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Hi folks, the current build script seems to be broken: Only the ajax part of

Re: [jQuery] Performance question

2006-10-07 Thread Matt Stith
yes, that would help quite a bit, since jquery would only need to look once. On 10/7/06, Jacky [EMAIL PROTECTED] wrote: Would caching the jQuery object a help too? Sometimes you just can't keep the chain. e.g. var jqObj = $(#abc); On 10/8/06, Karl Swedberg [EMAIL PROTECTED] wrote: On Oct

Re: [jQuery] Drop down menu

2006-10-07 Thread Glen Lipka
have you seen this one? http://be.twixt.us/jquery/suckerFish.php In IE7, the menu items are cut off on yours. Glen On 10/7/06, TJ [EMAIL PROTECTED] wrote: Hi, I am trying to make a drop down menu. I have half of it but I need a sub menu off to the left. I am using this jquery code.

Re: [jQuery] Drop down menu

2006-10-07 Thread Kevin Scholl
A great starting point, but to date Myles has not added beyond the first level. He does present some excellent work, though, yes? FWIW , the menu items on TJ's example are cut off on Firefox as well. I was playing around with this style of menu system this week as well, using Myles's and a

Re: [jQuery] Drop down menu

2006-10-07 Thread Karl Swedberg
Feel free to use any code you want from mine, too. I haven't completely polished it up yet, but I'll be writing up something about it within the next couple weeks on learningjquery.com, so I'll be making it look a little prettier in the

Re: [jQuery] Capturing modifier key events

2006-10-07 Thread Blair McKenzie
I've found that I've had to add keydown to both document and body in order to detect ctrl and shift in both ie and ff.\$(document).add(body).keydown( function(e) { var ctrl = e.keyCode == 16 || e.ctrlKey ; var alt = e.keyCode == 18 || e.altKey;});BlairOn 10/5/06, Klaus Hartl [EMAIL PROTECTED]