Re: [jQuery] AJAX module - further suggestions?

2006-09-26 Thread Klaus Hartl
Jörn Zaefferer schrieb: Hi folks, after the discussion about the global ajax handlers and the question, if the form plugin should be merged into the core, I'd like to know wheather anyone has any other issues, problems or ideas for the AJAX module that can be addressed. Now is the

[jQuery] Is $(document).ready() broken in IE?

2006-09-26 Thread SDisk SDisk
In my old revision of jQuery $Date: 2006-05-02 12:03:07 -0700 all works OK but I downloaded the new revision 1.0.1 and in this simple code:$(document).ready(function(){ userlang = navigator.language? navigator.language : navigator.userLanguage; alert(userlang);});In IE not works, alerts undefined

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Andy Matthews
I'd be happy to help you out Yehuda. I could even shoot it past my wife...she does editing duties for a travel book writer who recently released a new book. !//--andy matthewsweb developercertified advanced coldfusion programmerICGLink, Inc.[EMAIL PROTECTED]615.370.1530

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Fil
Are you saying that there should be a section on jQuery set aside for womens issues? Did I say such a thing? :-D I just point to the fact that using invalid XHTML will discourage *some* XHTML-savvy users, as putting a bimbo picture on the Magazine (p 12) -- with no explanation whatsoever of

[jQuery] Vote for the Visual JQuery Magazine DZone article

2006-09-26 Thread Rey Bango
Vote it up guys: http://www.dzone.com/links/free_new_online_ajax_magazine.html Rey... ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Multiple Ready Blocks

2006-09-26 Thread Justin Carter
On 9/26/06, Michael Geary [EMAIL PROTECTED] wrote: Note that there is a handy shortcut for $(document).ready(): $( function(){} ); -Mike Nice tip, thanks Mike! (There's one for the mag Yehuda!) Justin ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Multiple Ready Blocks

2006-09-26 Thread Klaus Hartl
Justin Carter schrieb: On 9/26/06, Michael Geary [EMAIL PROTECTED] wrote: Note that there is a handy shortcut for $(document).ready(): $( function(){} ); -Mike Nice tip, thanks Mike! (There's one for the mag Yehuda!) Justin Just FYI, thats not a secret feature, it's also in the

Re: [jQuery] Logging for development?

2006-09-26 Thread Fil
I'm not sure if this overhead should be removed, eg. by the build script when packing the code. I'd favor a three file organization: a full-debug jquery-debug.js (that includes the Logging object, a logging interface and so on); a normal jquery.js; and a packed jquery-packed.js -- Fil

[jQuery] Logging for development?

2006-09-26 Thread Jörn Zaefferer
Hi folks, currently jQuery does not try to handle any programming errors by clients, eg. an expression like [EMAIL PROTECTED], that is missing a closing bracket ], can result in quite confusing behaviour and is hard to spot. In other places, like the problem described in bug #165 (

Re: [jQuery] Logging for development?

2006-09-26 Thread Stefan Petre
I made such a tool for myself and is now on svn under plugins/interface maybe you can extended or improve it http://interface.eyecon.ro/development/demos/drop_later.html this a demo with it in action.-- Forwarded message --From: Jörn Zaefferer [EMAIL PROTECTED] Date: 26.09.2006

Re: [jQuery] $().load didn't works ini IE6

2006-09-26 Thread Donny Kurnia
On 9/26/06, Michael Geary [EMAIL PROTECTED] wrote: I need help to make the following code works in IE : document.writeln(select name=\+name+\ id=\+name+\+((multiple!=null)? +multiple:)+); var tablename = some_table; $(#+name).load(table_query.php, {table: tablename});

Re: [jQuery] Get attribute form $()

2006-09-26 Thread Donny Kurnia
On 9/26/06, Klaus Hartl [EMAIL PROTECTED] wrote: Donny Kurnia schrieb: I've got this result while debugging with firebug: $(type,line) [type value=select] $(type,line).attr(value) --result nothing $(type,line).get(0) type value=select $(type,line).get(0).attr(value) --result

Re: [jQuery] Cool technique

2006-09-26 Thread Dan Atkinson
Isn't this the same as HighlightFade? http://jquery.offput.ca/highlightFade/ wycats wrote: Nice anecdote. You can check out a demo here: http://www.visualjquery.com/plugins/animate.html -- Yehuda -- View this message in context:

Re: [jQuery] Suggestion: add iframe hack to core jQuery

2006-09-26 Thread Klaus Hartl
Mark Gibson schrieb: Is it needed for IE7? No, it's not. You can exclude IE7 like this: if ( $.browser.msie typeof XMLHttpRequest == 'function') ) { ... } -- Klaus ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Suggestion: add iframe hack to core jQuery

2006-09-26 Thread Mark Gibson
Hi, I was thinking that due to it being such a common problem, I'd like to suggest adding the iframe hack for IE to the jQuery core. (To hide select elements beneath a positioned element) The plugin below appends an iframe with the necessary css so that you don't need any messy hacks in your

Re: [jQuery] TableSorter Preview: Filtering.

2006-09-26 Thread Christian Bach
Jörn, This is certainly a very interesting approach! I will try to incorporate the ides into the release. As for RegExp, the filters for text nodes do support standard RegExp syntax. There will be support for a global RegExp driven search field that will search the entire table structure.

Re: [jQuery] Suggestion: add iframe hack to core jQuery

2006-09-26 Thread George Adamson
Nice idea. Quite a few plugins would find that useful. Another useful funtion would be a method to return the x,y (left,top) coordinates of any element (relative to the page or some specified element). The classic iteration through offsetParent elements would be a good start but runs into

Re: [jQuery] Multiple Ready Blocks

2006-09-26 Thread Justin Carter
On 9/26/06, Klaus Hartl [EMAIL PROTECTED] wrote: Justin Carter schrieb: On 9/26/06, Michael Geary [EMAIL PROTECTED] wrote: Note that there is a handy shortcut for $(document).ready(): $( function(){} ); -Mike Nice tip, thanks Mike! (There's one for the mag Yehuda!) Justin

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Yehuda Katz
On 9/26/06, Fil [EMAIL PROTECTED] wrote: Are you saying that there should be a section on jQuery set aside for womens issues?Did I say such a thing?:-DI just point to the fact that using invalid XHTML will discourage *some*XHTML-savvy users, as putting a bimbo picture on the Magazine (p 12) --

Re: [jQuery] Spread jQuery Request

2006-09-26 Thread Dan Atkinson
Cool idea! How bout doing an 'I like jQuery because...' sorta thang?! wycats wrote: Hey guys, I'm going to be putting together a video to be posted on YouTube as an advertisement for jQuery. I'd love to get MP3 or text testimonials from you guys explaining why the switch to jQuery

Re: [jQuery] Suggestion: add iframe hack to core jQuery

2006-09-26 Thread George Adamson
Thanks Brandon, I'll give it a go. Looks like most of it will convert to JQuery ok. I know from my own experiments how much effort you must have put into this! George Brandon Aaron wrote: Hey I've gone through the trouble already once before of getting an acurate reading of the x and y

Re: [jQuery] Cool technique

2006-09-26 Thread Yehuda Katz
Nope. This was a purposeful (simple) alternative to highlightFade. It doesn't do any kind of coloring. It simply fades the element out to 50% and back up to 100%.-- YehudaOn 9/26/06, Dan Atkinson [EMAIL PROTECTED] wrote: Isn't this the same as

Re: [jQuery] TableSorter Preview: Filtering.

2006-09-26 Thread Dan Atkinson
Hey! This is great stuff! It looks like IP address filtering is a bit weird though. It recognises the IP as a range, but each octet is not seperated by a period (.). Other than that, it's great! Will the final have/(be able to have) paging included at all? Cheers, Dan Christian Bach

Re: [jQuery] TableSorter Preview: Filtering.

2006-09-26 Thread Christian Bach
Hi again, There was a small glitch in the last demo (Forgot to remove a log message, stupid!) So if anyone else experienced that i got stock on the sorting message, please try again. URL: http://motherrussia.polyester.se/pub/jquery/demos/filter/filter-demo.html Best regards Christian

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Dan Atkinson
Lol! I agree though! When it comes to HTML in sample code, it's always good to have it XHTML standards compliant. That way, people won't complain that your code won't validate. We call them 'validation nazi's by the way! ;) Klaus Hartl wrote: I'd like to review HTML stuff if desired*. For

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Dan Atkinson
No matter. No harm done! :) Dan Karl Swedberg-2 wrote: I see. Point taken, and appreciated. I'm afraid my reply may have sounded more offended and/or defensive than I had intended it. I wanted to put an emoticon in there somewhere to indicate that I wasn't wrapped around the axle

Re: [jQuery] TableSorter Preview: Filtering.

2006-09-26 Thread Christian Bach
Hi! Yes, paging will be included in the 1.1 release as will a ton of documentation / examples. There are some issues with filtering, Dates don't work and ip-addresses are displayed wrong. All the issues will be fixed in time to the release. Best regards Christian Dan Atkinson wrote: Hey!

Re: [jQuery] Is $(document).ready() broken in IE?

2006-09-26 Thread SDisk SDisk
I answer myself :P. I can not insert jquery declaration with DOM:s = document.createObject(script);s.src = "">s.type = text/_javascript_;document.getElementByTagName (head)[0].appendChild(s);then in IE generate many problems ;(2006/9/26, SDisk SDisk [EMAIL PROTECTED]: In my old revision of jQuery

Re: [jQuery] Ready blocks not always firing

2006-09-26 Thread Brandon Aaron
Glad you where able to narrow the issue down. I would assume that it is the combination of SWFObject+jQuery and not the general technique of inline SCRIPT blocks. Looking over the compacted swfobject.js, it doesn't seem that there should be a conflict. Brandon On 9/25/06, Dave Benjamin [EMAIL

Re: [jQuery] Suggestion: add iframe hack to core jQuery

2006-09-26 Thread Brandon Aaron
Oh cool. I actually have written something similar but I called it bgIframe. One thing to note is that if the element that requires the iFrame hack has a border, then the iFrame will have to be positioned negative top and left the width of the border to cover it as well. BTW ... Great idea on

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Karl Swedberg
On Sep 26, 2006, at 9:39 AM, Dan Atkinson wrote: I'm referring to the ones on Digg! Ah! Good to know. As for the term 'grammar nazi', it's a fairly legitimate term: http://en.wikipedia.org/wiki/Grammar_nazi No offence was implied by the use of 'nazi', it's just a regularly used

Re: [jQuery] Visual JQuery Magazine in Ajax Developer's Journal

2006-09-26 Thread Rey Bango
Thanks Andy. Gotta get the word out! Be sure to lend your support on CF-Talk. :o) Rey... Andy Matthews wrote: Great job Rey!! !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737

[jQuery] Ajaxian Picked up JQuery Magazine!

2006-09-26 Thread Rey Bango
Great job Yehuda!!! http://ajaxian.com/archives/jquery-magazine-started ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] mousewheel plugin

2006-09-26 Thread Mark Gibson
Brandon Aaron wrote: I've actually just recently implemented the mousewheel and thought about writting it as a plugin. There are a few special situations that need to be considered. For example IE allows a mousewheel event to be attached to an element in the dom and Firefox allows it only to

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Karl Swedberg
On Sep 26, 2006, at 5:59 AM, Dan Atkinson wrote: I would have just ignored the grammar nazis. Sometimes it's fun to make mistakes and bait these guys. Wow! Don't you think that might be a little harsh? Nobody on this list as far as I could tell meant any disrespect by calling out typos

Re: [jQuery] Suggestion: add iframe hack to core jQuery

2006-09-26 Thread Mark Gibson
Brandon Aaron wrote: BTW ... Great idea on using the expression css and the mask filter! That reduces the code lots. Cheers, I haven't even got a clue what the mask filter does! It was suggested in the date picker plugin. Normally I steer clear of this wierd IE specific stuff, but this seemed

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Dan Atkinson
I'd be happy to. Feel free to Gmail me - (dandementia) about it if you'd like. wycats wrote: I, for one, was quite pleased with the corrections, and may call on some of the list members who made corrections to proofread the magazine in future issues. Anyone interested? -- Yehuda On

Re: [jQuery] mousewheel plugin

2006-09-26 Thread Webunity | Gilles van den Hoven
Mathias Bank wrote: It seems, that mousewheel is not an accepted event in jquery. So I have written a small plugin that can handle wheel events. It is based on http://adomas.org/javascript-mouse-wheel/. Nice! I just sent an email about the exact same page to John today (3 hours ago), telling

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Karl Swedberg
On Sep 26, 2006, at 9:40 AM, Yehuda Katz wrote:I, for one, was quite pleased with the corrections, and may call on some of the list members who made corrections to proofread the magazine in future issues. Anyone interested?I'd love to help out. As a former high-school and college writing

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Andy Matthews
What's more important? Professionalism or tweaking people's noses? !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: [EMAIL PROTECTED]

Re: [jQuery] Suggestion: add iframe hack to core jQuery

2006-09-26 Thread Brandon Aaron
Right on ... mask makes all the non-transparent pixles transparent on the element it is applied to. It is basically the same as applying alpha 0 as I understand. I wonder if the alpha filter would be better to be applied rather than the mask? Brandon On 9/26/06, Mark Gibson [EMAIL PROTECTED]

[jQuery] Visual JQuery Magazine in Ajax Developer's Journal

2006-09-26 Thread Rey Bango
I've been talking to my good friend Rob Gonda for some time about JQuery and all the goodness it provides. Well Rob, who is the Editor-In-Chief at Ajax Developer's Journal (http://ajax.sys-con.com/), has posted about Yehuda's new magazine in his blog:

Re: [jQuery] mousewheel plugin

2006-09-26 Thread Brandon Aaron
Oh wow ... okay I'll have to look into that. I don't even remember the reason why I thought it didn't now. Heh that is going to simplfy some of my code. :) Brandon On 9/26/06, Mark Gibson [EMAIL PROTECTED] wrote: Brandon Aaron wrote: I've actually just recently implemented the mousewheel and

[jQuery] No more IE6 background-flicker!!!

2006-09-26 Thread Webunity | Gilles van den Hoven
Hi guys, I've seen this interesting post on the Ajaxian forum today: http://ajaxian.com/archives/no-more-ie6-background-flicker http://misterpixel.blogspot.com/2006/08/title-well-its-done-my-ie6-background.html Which gives me this jQuery implemention, which i have added to my base jQuery init

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Fil
Guess what? I'm a pretty strong feminist myself. The constant use of the Devo hat throughout the magazine should provide a clue that the three-tiered object is some kind of jQuery icon. Yeah, I had figured this :) The misunderstanding came from the fact that I had never seen the DEVO logo

Re: [jQuery] Suggestion: add iframe hack to core jQuery

2006-09-26 Thread Brandon Aaron
Hey I've gone through the trouble already once before of getting an acurate reading of the x and y coordinates of an element cross-browser. I even wrote all the unit tests. It is painful! Anyways it is specific to prototype for now but could easily be optimized and convered to be jQuery-like. I

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Dan Atkinson
I would have just ignored the grammar nazis. Sometimes it's fun to make mistakes and bait these guys. wycats wrote: With the exception of the semantic issues, I have corrected the errors that have been reported. The updated issue (which also has several other small improvements) can be

Re: [jQuery] mousewheel plugin

2006-09-26 Thread Brandon Aaron
I've actually just recently implemented the mousewheel and thought about writting it as a plugin. There are a few special situations that need to be considered. For example IE allows a mousewheel event to be attached to an element in the dom and Firefox allows it only to be attached to the

[jQuery] The Ajax Experience

2006-09-26 Thread Yehuda Katz
As it turns out, I'm going to be at the AJAX Experience in Boston in October. Is anyone else (other than John, who's giving a couple of lectures) planning on being there?-- Yehuda KatzWeb Developer | Wycats Designs (ph)718.877.1325 ___ jQuery mailing

[jQuery] jQuery Docs - XML

2006-09-26 Thread Sam Collett
Currently I am usign the jQuery Docs XML file found on the API page (http://jquery.com/api/) for generating an XML file (for use with Programmers Notepad 2). However, I notice that the version of jQuery is not included. Perhaps it would be useful if this (and the SVN revision) was included? It

Re: [jQuery] jQuery Docs - XML

2006-09-26 Thread Yehuda Katz
There's a private method in jQuery core that produces the current svn revision, but you are absolutely correct.On 9/26/06, Sam Collett [EMAIL PROTECTED] wrote:Currently I am usign the jQuery Docs XML file found on the API page (http://jquery.com/api/) for generating an XML file (for use

Re: [jQuery] jQuery Docs - XML

2006-09-26 Thread Sam Collett
What I meant was that the version should be in the XML file (and perhaps the JSON file as well), i.e. docs version=1.01 rev=249 method... On 26/09/06, Yehuda Katz [EMAIL PROTECTED] wrote: There's a private method in jQuery core that produces the current svn revision, but you are

Re: [jQuery] jQuery Docs - XML

2006-09-26 Thread Yehuda Katz
And I agreed. You're 100% right.-- YehudaOn 9/26/06, Sam Collett [EMAIL PROTECTED] wrote: What I meant was that the version should be in the XML file (andperhaps the JSON file as well), i.e.docs version=1.01 rev=249method...On 26/09/06, Yehuda Katz [EMAIL PROTECTED] wrote: There's a private

Re: [jQuery] AJAX xml new Option

2006-09-26 Thread Rey Bango
Hey Rafael, Great to see another fellow ColdFusion developer on here. I'm not sure what nome is. Is it a div or table cell? Could you explain your issue a little bit more? I'll see if I can help. Rey... Rafael Santos wrote: Hey, it's my 1st time using XML so i cant manage doin this:

Re: [jQuery] AJAX xml new Option

2006-09-26 Thread Rey Bango
I just saw nome in your XML result. So, now just explain a little further what your end result should be. Rey... Rafael Santos wrote: Hey, it's my 1st time using XML so i cant manage doin this: $.post(get_cli.cfm,{status:singles}, function(xml){ var id =

Re: [jQuery] AJAX xml new Option

2006-09-26 Thread Rafael Santos
Yeah, ive done so many copy n paste that i got everything mixed huuhuuhBut could yall explain to me how to use each() to the cli nodes to work with it ?2006/9/26, Klaus Hartl [EMAIL PROTECTED]:Rafael Santos schrieb: Hey, it's my 1st time using XML so i cant manage doin this:

Re: [jQuery] AJAX xml new Option

2006-09-26 Thread Rafael Santos
Thankz KlausLots of alerts showed here.. lol I didnt expect. hahaNow it's working fine =P2006/9/26, Klaus Hartl [EMAIL PROTECTED] :Rafael Santos schrieb: Yeah, ive done so many copy n paste that i got everything mixed huuhuuh But could yall explain to me how to use each() to the cli nodes to

[jQuery] Parents()

2006-09-26 Thread Glen Lipka
Bug in the API docs: the parents() description says ancestors() instead of parents().And on that subject. I have a button in a table and I want to climb up the dom until I hit the TABLE node.So I have:var oTable = $(this).parents(table); What is the xPath way of doing the same thing?Thanks. :)Glen

Re: [jQuery] AJAX xml new Option

2006-09-26 Thread Klaus Hartl
Rey Bango schrieb: Klaus is the man! He's one of the best contributors here. Thank you guys, but don't go over the top... I'm simply using jQuery from an early stage on and lucky if I can help a bit. There are others that have a much better understanding of the library itself. Cheers,

Re: [jQuery] TableSorter Preview: Filtering.

2006-09-26 Thread Jörn Zaefferer
Christian Bach schrieb: I can share a very geeky discovery which i run across earlier today: I was benchmarking some new sort methods for the plugin to see if i could out bid the default Array.sort method. It's seems that the built in sort method has a few speed enhancements up it's sleeves.

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Jörn Zaefferer
Karl Swedberg schrieb: I'd love to help out. As a former high-school and college writing instructor, maybe I still have a bit of the grammar nazi in me after all. ;-) How on earth could possibly someone running a site named 'englishrules' not be a grammar nazi? -- Jörn

Re: [jQuery] AJAX xml new Option

2006-09-26 Thread Rey Bango
Try this: $.post(get_cli.cfm, {status:singles}, function(xml){ $(cli, xml).each(function() { var optn = document.createElement(OPTION); optn.text = $(this).find('nome').text(); optn.value = $(this).find('id').text(); $( #test

Re: [jQuery] The Ajax Experience

2006-09-26 Thread Matt Stith
I wish i could come, but im 15 Yeah... School...On 9/26/06, Yehuda Katz [EMAIL PROTECTED] wrote: As it turns out, I'm going to be at the AJAX Experience in Boston in October. Is anyone else (other than John, who's giving a couple of lectures) planning on being there? -- Yehuda KatzWeb

Re: [jQuery] Looking for a Linux Webadmin listserv

2006-09-26 Thread Meece, Clifford T
Don't know of a list, but I'm a unix admin with 12 years of experience. You can email me directly if you want. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Gossett Sent: Tuesday, September 26, 2006 3:14 PM To: jQuery Discussion. Subject: [jQuery]

Re: [jQuery] tweenbox plugin - in IE not working, please fix

2006-09-26 Thread Will Jessup
Nilesh , There are some bugs that were to be resolved in jQuery core. I need to check the trac and see if they got fixed, then I plan on updating the script and releasing it. I think it has some crazy jello-tween right now, haha, but forgot where I left off. Will Hey, anyone know the

[jQuery] Creating elements on the fly...

2006-09-26 Thread Rey Bango
Maybe someone could shed some light on this. When inserting an item into a select box (id=test), this code works: var optn = document.createElement(OPTION); optn.text = $(this).find('nome').text(); optn.value = $(this).find('id').text(); $( #test ).append(optn);

Re: [jQuery] AJAX module - further suggestions?

2006-09-26 Thread Jörn Zaefferer
Klaus Hartl schrieb: Let me know if I can help out. It would be a great help if you could comment on the stuff I've written down here: http://jquery.com/dev/bugs/bug/217/ (mostly the 'Attaching global handlers to DOM elements...' ff. part) Thanks. -- Jörn

Re: [jQuery] Creating elements on the fly...

2006-09-26 Thread Jörn Zaefferer
Rey Bango schrieb: I remember John Resig telling me that I can create elements on the fly by using syntax similar to this; $( option value='1'foo/option ).appendTo( #test ) ; so I'm not clear why its not working. Any help would be appreciated. AFAIK the $(div) expression parses the

Re: [jQuery] No more IE6 background-flicker!!!

2006-09-26 Thread Michael Geary
Before y'all get too excited about this, keep in mind that it affects maybe one visitor out of ten thousand. The only people who run into this flicker problem are those who have gone into Internet Options / Temporary Internet Files / Settings and changed the check for newer versions setting to

Re: [jQuery] Creating elements on the fly...

2006-09-26 Thread Rey Bango
Thanks Jorn. Resig actually gave me similar code to create DIVs on the fly and they worked perfectly. I think you and Klaus helped out very much. Thanks again for the support. Rey... Jörn Zaefferer wrote: Rey Bango schrieb: I remember John Resig telling me that I can create elements on the

Re: [jQuery] Creating elements on the fly...

2006-09-26 Thread Rey Bango
Thanks for the help, Klaus. :o) Rey... Klaus Hartl wrote: Rey Bango schrieb: Maybe someone could shed some light on this. When inserting an item into a select box (id=test), this code works: var optn = document.createElement(OPTION); optn.text = $(this).find('nome').text(); optn.value =

Re: [jQuery] Spread jQuery Request

2006-09-26 Thread sunsean
One word, chainables. ~Sean ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Help finding parent element

2006-09-26 Thread Blair McKenzie
I liked this traversal examples idea, so I put some basic ones I've used in the jQuery cookbook to get it started. Could probably use some more 'interesting' examples :D. BlairOn 9/24/06, Glen Lipka [EMAIL PROTECTED] wrote: Parent() works, and also xPath expressions: (damn, jquery has so much

[jQuery] jQuery Projects

2006-09-26 Thread Glen Lipka
If I am working on a jQuery project, should I post url's here for people to see?Is it inappropriate to ask for suggestions to make it tighter and better?Like this link ! ;)Glen ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery Projects

2006-09-26 Thread Matt Stith
You can post links to whatever projects you like here, but you dont have to. Really the main reason for the mailing list is to ask for suggestions to make code better ;)On 9/26/06, Glen Lipka [EMAIL PROTECTED] wrote:If I am working on a jQuery project, should I post url's here for people to see?

Re: [jQuery] jQuery Projects

2006-09-26 Thread John Resig
Woah - do you design for Quickbooks? That'd be hot :-) I really like the slidey menu - hidden, but useful, navigation. --John On 9/26/06, Glen Lipka [EMAIL PROTECTED] wrote: If I am working on a jQuery project, should I post url's here for people to see? Is it inappropriate to ask for

Re: [jQuery] jQuery Projects

2006-09-26 Thread Rey Bango
John! Where the heck you been man? We've missed your input here. :o) Rey,,, John Resig wrote: Woah - do you design for Quickbooks? That'd be hot :-) I really like the slidey menu - hidden, but useful, navigation. --John ___ jQuery mailing list

Re: [jQuery] jQuery Projects

2006-09-26 Thread Michael Geary
He's been sick man. From: Rey Bango John! Where the heck you been man? We've missed your input here. :o) Rey,,, John Resig wrote: Woah - do you design for Quickbooks? That'd be hot :-) I really like the slidey menu - hidden, but useful, navigation. --John