Re: [jQuery] Broken Build

2006-10-09 Thread John Resig
Why not just force everyone to use UNIX-style endlines (e.g. \n only)? Up until now, that has been the case. To everyone who commits to core: Please watch your endlines, especially in OSX and Windows. --John On 10/8/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Franck Marcia schrieb: It's not

[jQuery] pack speed

2006-10-09 Thread Fil
Hello, has anyone measured the speed of unpacking jquery (or any other script, for that matter)? I would suspect that uncompressing/executing jquery.pack.js generates a small time overhead, but how long does it take? Compared to the time overhead of downloading the full-size jquery.js? -- Fil

Re: [jQuery] pack speed

2006-10-09 Thread Franck Marcia
2006/10/9, Fil [EMAIL PROTECTED]: has anyone measured the speed of unpacking jquery (or any other script, for that matter)? On my system: 125 ms when on battery (laptop), 65 ms when on power. It depends completely on the system it's running on. Franck. I would suspect that

Re: [jQuery] jquery update causes js error

2006-10-09 Thread Klaus Hartl
Michael Geary schrieb: From: Stephen Woodbridge [EMAIL PROTECTED] http://imaptools.com:8081/maps/demo2.html From: Brent Pedersen i'd guess the offending line is in mscross: Object.prototype.objRef = null; Good catch. It's strictly verboten to add to Object.prototype. That will break

Re: [jQuery] pack speed

2006-10-09 Thread Christof Donat
Hi, has anyone measured the speed of unpacking jquery (or any other script, for that matter)? I would suspect that uncompressing/executing jquery.pack.js generates a small time overhead, but how long does it take? Compared to the time overhead of downloading the full-size jquery.js? It

Re: [jQuery] pack speed

2006-10-09 Thread Jörn Zaefferer
has anyone measured the speed of unpacking jquery (or any other script, for that matter)? I would suspect that uncompressing/executing jquery.pack.js generates a small time overhead, but how long does it take? Compared to the time overhead of downloading the full-size jquery.js? It

[jQuery] DOM-Traversing and Text_Nodes

2006-10-09 Thread Falk Pauser
hi all! i wonder how i could do this using jquery's dom-traversing: in IE6 i do: 1. select one word in text with the mouse 2. get selection and create range 3. clone this range twice, collapse one copy to left and the other to right 4. insert span (id='left_boundary) at left, and span

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-09 Thread Mark Gibson
Jörn Zaefferer wrote: it's time for another release candiate, this time including even more bug fixes and nothing else. IE 6.0.2900.2180 (XP SP2) - 1 tests of 211 failed: 38. $.find() (1, 42, 43) Firefox 1.5.0.7 - ok (test #55 failed once - but I think this may have been down to a network

Re: [jQuery] Cheat Sheet?

2006-10-09 Thread Dan Atkinson
FYI: Every single one of those links leads to a 'forbidden' page. Karl Swedberg-2 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

[jQuery] DOM-Traversing and Text_Nodes

2006-10-09 Thread Falk Pauser
hi all! i wonder how i could do this using jquery's dom-traversing: in IE6 i do: 1. select one word in text with the mouse 2. get selection and create range 3. clone this range twice, collapse one copy to left and the other to right 4. insert span (id='left_boundary) at left, and span

[jQuery] Cheat Sheet?

2006-10-09 Thread Michael Holloway
Work fine for me? Did you copy the links into the url rather than click them? Their broken over two lines. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] IE6 performance tweak

2006-10-09 Thread Webunity | Gilles van den Hoven
Klaus Hartl wrote: The by far safest thing to use is Conditional Compilation. And that way other browsers only get JavaScript comments...: Yeah i saw that on your blog. But doesn't this affect all versions of msie, even 6+ ? -- Gilles ___

[jQuery] Is there a way to endAll()?

2006-10-09 Thread Jacky
After some find(), filter(), parent(), siblings()..., is there any convenient way to end() back to the original $(xxx)? This would be good for plugins to return the original jQuery object. -- Best Regards, Jacky http://jacky.seezone.net ___ jQuery

Re: [jQuery] Is there a way to endAll()?

2006-10-09 Thread Fil
@ Jacky [EMAIL PROTECTED] : After some find(), filter(), parent(), siblings()..., is there any convenient way to end() back to the original $(xxx)? This would be good for plugins to return the original jQuery object. I do it this way: $.fn.plugin = function() {

Re: [jQuery] ajax login

2006-10-09 Thread Matthias Schroeder
On Sun, 8 Oct 2006 22:12:17 -0400 TJ [EMAIL PROTECTED] wrote: I have updated to this with the return false. I am still getting the same error. Any suggestions? can you send a link to that page? Your code is working for me (calling register php and browser stays on old location) if i

Re: [jQuery] Cheat Sheet?

2006-10-09 Thread Karl Swedberg
On Oct 9, 2006, at 6:18 AM, Dan Atkinson wrote: FYI: Every single one of those links leads to a 'forbidden' page. Karl Swedberg-2 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

Re: [jQuery] Cheat Sheet?

2006-10-09 Thread Dan Atkinson
Lol! Oops! I can't believe I didn't see that! Fixed: PDF http://www.define-web.com/jquery_cheat_sheet/jquery_cheat_sheet_080306_v1.pdf http://www.define-web.com/jquery_cheat_sheet/jquery_cheat_sheet_080306_v1_pg2.pdf PNG

Re: [jQuery] oninput bug workaround

2006-10-09 Thread Duncan Anker
Hi John, Oninput is a firefox event, it fires whenever the text being displayed would change, e.g. after a paste (so it's similar to the IE event onpaste). Onkeypress won't catch right-click pastes or auto- completion, and I believe that onchange doesn't fire until the field loses focus.

Re: [jQuery] IE6 performance tweak

2006-10-09 Thread Klaus Hartl
Webunity | Gilles van den Hoven schrieb: Klaus Hartl wrote: The by far safest thing to use is Conditional Compilation. And that way other browsers only get JavaScript comments...: Yeah i saw that on your blog. But doesn't this affect all versions of msie, even 6+ ? Yes, but that

Re: [jQuery] Is there a way to endAll()?

2006-10-09 Thread Fil
I do it this way: $.fn.plugin = function() { this.find().filter().parent().siblings(); return this; } That would return the modified jQuery object. Oh my goddess! Thanks for correcting this :-/ I need to proof my code now... -- Fil

Re: [jQuery] oninput bug workaround

2006-10-09 Thread Sam Collett
On 09/10/06, Duncan Anker [EMAIL PROTECTED] wrote: Hi John, Oninput is a firefox event, it fires whenever the text being displayed would change, e.g. after a paste (so it's similar to the IE event onpaste). Onkeypress won't catch right-click pastes or auto- completion, and I believe that

[jQuery] Stopping animate() on command

2006-10-09 Thread Paul Bakaus
Hi there,I'm currently searching for a good solution to stop jQuery's interal function animate() when a new event occurs. A very basic example:1. You have a moving div container which has a duration of 10 seconds, it moves from left: 0px; to left: 500px. 2. Somewhere in your page there's a stop

Re: [jQuery] jquery update causes js error

2006-10-09 Thread Stephen Woodbridge
Michael and Brent, Thank you very much! That was it. Any idea why that would have been done in the first place? I ran into another issue that all my for loops in code I added to mscross were returning a null objRef at the end of the loop and I had to add code to detect that and break out of

Re: [jQuery] jquery update causes js error

2006-10-09 Thread Klaus Hartl
Stephen Woodbridge schrieb: Michael and Brent, Thank you very much! That was it. Any idea why that would have been done in the first place? I ran into another issue that all my for loops in code I added to mscross were returning a null objRef at the end of the loop and I had to add

Re: [jQuery] Is there a way to endAll()?

2006-10-09 Thread Jörn Zaefferer
To savely restore the state, you could do something like this (untested): jQuery.fn.plugin = function() { var oldStack = $.merge( [], this.stack ); // do other stuff this.stack = oldStack; return this; }; By merging the current stack into an empty array, a copy of the current

Re: [jQuery] IE6 performance tweak

2006-10-09 Thread Sam Collett
On 09/10/06, Klaus Hartl [EMAIL PROTECTED] wrote: Webunity | Gilles van den Hoven schrieb: Klaus Hartl wrote: The by far safest thing to use is Conditional Compilation. And that way other browsers only get JavaScript comments...: Yeah i saw that on your blog. But doesn't this affect

Re: [jQuery] jquery update causes js error

2006-10-09 Thread Brent Pedersen
it looks like mscross had objRef to maintain the scope he wanted. (though he didn't need to extend Object.prototype). in jquery when you attach an event, this in a callback refers to the html element that was clicked or mouseover-ed etc. in his lib, he is saving a reference to an html element in

[jQuery] Effect similar to this blog's exploding window

2006-10-09 Thread Rey Bango
Jack Slocum was discussing a new block comments feature that he added into his blog. http://www.jackslocum.com/yui/2006/10/09/my-wordpress-comments-system-built-with-yahoo-ui-and-yahooext/ The feature is pretty cool but what I found even cooler was how the comment window kind of exploded onto

[jQuery] jQuery Browser Detection

2006-10-09 Thread Sam Collett
Currently, jQuery does a browser detect by checking the user agent. However, I think object detection would probably be a better way. This code does that by detecting unique obects on the window object. However, I am not sure what is unique to Safari. // Figure out what browser is being used

Re: [jQuery] Effect similar to this blog's exploding window

2006-10-09 Thread Stefan Petre
Rey Bango wrote: Jack Slocum was discussing a new block comments feature that he added into his blog. http://www.jackslocum.com/yui/2006/10/09/my-wordpress-comments-system-built-with-yahoo-ui-and-yahooext/ The feature is pretty cool but what I found even cooler was how the comment window

Re: [jQuery] Performance question

2006-10-09 Thread Raziel Alvarez
Thanks for all your responses. I actually do all the things that you mentioned: reusing the jQ object, chaining, setting a context, etc. Actually it would be helpful to have some performance analysis on the different kinds of queries, such as searching by ID, by element, class name, attribute,

Re: [jQuery] Effect similar to this blog's exploding window

2006-10-09 Thread Rey Bango
Thank you Stefan. I'll check that out. Rey Stefan Petre wrote: Rey Bango wrote: Jack Slocum was discussing a new block comments feature that he added into his blog. http://www.jackslocum.com/yui/2006/10/09/my-wordpress-comments-system-built-with-yahoo-ui-and-yahooext/ The feature is pretty

[jQuery] Queueing of effects (fx)

2006-10-09 Thread Abdur-Rahman Advany
Hi guys, I was searching if there was a way to do queuing like in script.aculo.us (I am switching to jquery but this is the only bump) Here some doc's on how it works in script.aculo.us http://blog.railsdevelopment.com/pages/effect/queue/ ___

Re: [jQuery] Queueing of effects (fx)

2006-10-09 Thread Sam Collett
On 09/10/06, Abdur-Rahman Advany [EMAIL PROTECTED] wrote: Hi guys, I was searching if there was a way to do queuing like in script.aculo.us (I am switching to jquery but this is the only bump) Here some doc's on how it works in script.aculo.us

[jQuery] New Plugin: Xpander

2006-10-09 Thread Jeffrey McClure
I've just added a new plugin, in its early stages, that will display standard links as inline toggling divs. http://jquery.com/docs/Plugins/Xpander/ I'm still new to this process, so any comments/feedback would be appreciated. Thanks ___ jQuery mailing

Re: [jQuery] jQuery Browser Detection

2006-10-09 Thread Brian Miller
I'm inclined to disagree. I believe that one should use object detection for cases in which they are invoking that object for it's functionality. A prime example is the XHR (although MS may be messing around with that in IE7). But, if one is best served by simply knowing what browser we are

Re: [jQuery] jQuery Browser Detection

2006-10-09 Thread Sam Collett
On 09/10/06, Brian Miller [EMAIL PROTECTED] wrote: I'm inclined to disagree. I believe that one should use object detection for cases in which they are invoking that object for it's functionality. A prime example is the XHR (although MS may be messing around with that in IE7). But, if one

Re: [jQuery] Stopping animate() on command

2006-10-09 Thread Stefan Petre
Paul Bakaus wrote: Hi there, I'm currently searching for a good solution to stop jQuery's interal function animate() when a new event occurs. A very basic example: 1. You have a moving div container which has a duration of 10 seconds, it moves from left: 0px; to left: 500px. 2.

Re: [jQuery] Queueing of effects (fx)

2006-10-09 Thread Corey Jewett
I could be wrong, but I'm pretty sure fx are automatically queued. Something John did about 2 months ago. There's not a commit log for the actual queuing, but there is one for a bug fix: r209 | john | 2006-08-16

Re: [jQuery] New Plugin: Xpander

2006-10-09 Thread Klaus Hartl
Jeffrey McClure schrieb: I've just added a new plugin, in its early stages, that will display standard links as inline toggling divs. http://jquery.com/docs/Plugins/Xpander/ I'm still new to this process, so any comments/feedback would be appreciated. Thanks Jeffrey, thanks for

Re: [jQuery] jQuery Browser Detection

2006-10-09 Thread Brandon Aaron
People that know how to change their user agent string will most likely know the possible results of doing so. I don't buy into the notion that we have lots of people changing their user agent string. -- Brandon Aaron On 10/9/06, Sam Collett [EMAIL PROTECTED] wrote: On 09/10/06, Brian Miller

Re: [jQuery] New Plugin: Xpander

2006-10-09 Thread Andy Matthews
Do you have a demo? One thing to point out is that, if I understand you correctly, this is something that CSS (3 I think) is already capable of doing. !//--andy matthewsweb developercertified advanced coldfusion programmerICGLink, Inc.[EMAIL PROTECTED]615.370.1530

Re: [jQuery] jQuery Browser Detection

2006-10-09 Thread Brian Miller
Sam, if that's a problem with your user base, then there are issues that go beyond the technical. If my users were that hackish and black-hatted, I wouldn't be giving them any front-end code at all if I could avoid it. I mean, if people are technically savvy enough to change their user agent

[jQuery] NEWS: JQuery and ColdFusion

2006-10-09 Thread Rey Bango
Some of you may not know about Adobe ColdFusion but its an application server thats been out for some time now and its a very effective product for developing dynamic websites. Its the product that I use and I've been evangelizing JQuery to the CF community as much as possible. One of the

[jQuery] How to implement file upload using AJAX?

2006-10-09 Thread Balkanski
Hi, Does anybody know how a file pload using AJAX can be implemented in JQuery? If so, please give me an example. I intend to use PHP for the data receiving, but the problem is the sending actually. Thanks in advance Emilian -- View this message in context:

Re: [jQuery] check all functions

2006-10-09 Thread Charles Peterson
Sam Collett wrote: On 05/10/06, Charles Peterson [EMAIL PROTECTED] wrote: Ya, you inspired my improvement on the functions. basically you are checking or unchecking ALL but ignored checkboxes on the page/form (useful, but not what I wanted) I wanted to specify which ones to check,

Re: [jQuery] DOM-Traversing and Text_Nodes

2006-10-09 Thread John Resig
why cant i use jquery to access TEXT_NODES? or: what can i do to get it working? This is correct - jQuery does not deal with Text Nodes (in that it completely ignores them, along with all other non-Element Nodes). Although, having dealt with text operations in a browser before (incredibly

Re: [jQuery] Queueing of effects (fx)

2006-10-09 Thread Andy Matthews
I believe that jQuery has a sort of built in queue in that effects are chainable. So you'd simply write all of the effects in one long chain and each of them would happen in the order you specify in your chain. !//-- andy matthews web developer certified advanced coldfusion

Re: [jQuery] New Plugin: Xpander

2006-10-09 Thread Jeffrey McClure
Here is a demo of the plugin in action:Example:http://labs.activespotlight.net/jQuery/Xpander.htmlPlugin Source: http://labs.activespotlight.net/resources/js/Xpander.jsOverview Page:http://jquery.com/docs/Plugins/Xpander/---Jeffrey ___ jQuery mailing

Re: [jQuery] How to implement file upload using AJAX?

2006-10-09 Thread Brian Miller
You can't use ajax to send files. It's not supported because it's not permitted. The libraries that do it (e.g. Yahoo UI) create a hidden iframe on the fly, with a form inside the iframe (that has a file upload control), which gets submitted. It's as much of a pain as it sounds like it is.

Re: [jQuery] NEWS: JQuery and ColdFusion

2006-10-09 Thread Rey Bango
I'm trying to convince him of that and I think this exercise may have helped quite a bit. Keep your fingers crossed! :) Rey Andy Matthews wrote: Cool Rey. Maybe Rob will start using jQuery instead of AJAXCFC. Wouldn't that be a kicker! !//-- andy matthews web

Re: [jQuery] jQuery Browser Detection

2006-10-09 Thread Andy Matthews
Brian. Aren't there cases though where the browser tells you the incorrect string? For example, I believe that older versions of IE for Mac said that they were actually a different browser than they really were. The AOL browser also does this same thing I think. !//-- andy

Re: [jQuery] New Plugin: Xpander

2006-10-09 Thread Rey Bango
Very cool Jeffrey. Rey Jeffrey McClure wrote: Here is a demo of the plugin in action: Example: http://labs.activespotlight.net/jQuery/Xpander.html Plugin Source: http://labs.activespotlight.net/resources/js/Xpander.js Overview Page: http://jquery.com/docs/Plugins/Xpander/

[jQuery] String concatenation optimization

2006-10-09 Thread Tombo
i like to mess around with javascript optimization lately. i wrote this little page to show the different speeds of string concatenation code. i tested in firefox and IE7. just looking for any feedback or suggestions. thx http://www21.brinkster.com/tomhere/test/test36.htm -- View this message

Re: [jQuery] jQuery Browser Detection

2006-10-09 Thread John Resig
Aren't there cases though where the browser tells you the incorrect string? For example, I believe that older versions of IE for Mac said that they were actually a different browser than they really were. The AOL browser also does this same thing I think. Fortunately, neither of those

Re: [jQuery] Queueing of effects (fx)

2006-10-09 Thread John Resig
I believe that jQuery has a sort of built in queue in that effects are chainable. So you'd simply write all of the effects in one long chain and each of them would happen in the order you specify in your chain. Exactly, so doing: $(#foo).slideDown('slow').slideUp('slow'); will be queued

[jQuery] How to integrate jquery with java

2006-10-09 Thread
Hi, what is the preferred way to integrate jquery with java? I am planning on using DWR - so I can make calls to my backend - handle moving data from java to javascript, vice versa Just curious what are other using? Thanks ___

Re: [jQuery] New Plugin: Xpander

2006-10-09 Thread Andy Matthews
Ooooh. That's TOTALLY not what I was thinking. Very cool. !//--andy matthewsweb developercertified advanced coldfusion programmerICGLink, Inc.[EMAIL PROTECTED]615.370.1530 x737--//- -Original Message-From: [EMAIL PROTECTED]

[jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Rey Bango
If you don't want to upgrade, be very vigilant about what automatic updates you install during MS' normal patch cycle: http://blog.washingtonpost.com/securityfix/2006/10/microsoft_to_push_out_internet.html Rey... ___ jQuery mailing list

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Webunity | Gilles van den Hoven
Rey Bango wrote: If you don't want to upgrade, be very vigilant about what automatic updates you install during MS' normal patch cycle: Does anybody know if it is possible to run both IE 6.x and IE7 both on thesame system? An absolute must if you are a web developer... Thanx Gilles

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Matt Stith
i dont think its a good idea for ms to force ie7 automatically, thats a big change and would REALLY confuse the average IE user... On 10/9/06, Rey Bango [EMAIL PROTECTED] wrote: If you don't want to upgrade, be very vigilant about what automatic updates you install during MS' normal patch

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Jörn Zaefferer
Webunity | Gilles van den Hoven schrieb: Does anybody know if it is possible to run both IE 6.x and IE7 both on thesame system? An absolute must if you are a web developer... Try this: http://tredosoft.com/IE7_standalone Works good enough for me. -- Jörn

Re: [jQuery] String concatenation optimization

2006-10-09 Thread Stephen Woodbridge
Tombo wrote: i like to mess around with javascript optimization lately. i wrote this little page to show the different speeds of string concatenation code. i tested in firefox and IE7. just looking for any feedback or suggestions. thx http://www21.brinkster.com/tomhere/test/test36.htm

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Franck Marcia
2006/10/9, Franck Marcia [EMAIL PROTECTED]: 2006/10/9, Jörn Zaefferer [EMAIL PROTECTED]: thesame system? An absolute must if you are a web developer... Try this: http://tredosoft.com/IE7_standalone ... and the opposite: ie3 to ie6, standalone. Franck. ... and the link: Forgot the link:

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Webunity | Gilles van den Hoven
Try this: http://tredosoft.com/IE7_standalone Works good enough for me. Thanx, just downloaded it! ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] New plugin: sparkline

2006-10-09 Thread Franck Marcia
2006/10/9, dizzledorf [EMAIL PROTECTED]: Nice work, Franck. Thank you. How do I get the sparklines to work with negative values? I plan to integrate it soon. Franck. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Klaus Hartl
Franck Marcia schrieb: 2006/10/9, Jörn Zaefferer [EMAIL PROTECTED]: thesame system? An absolute must if you are a web developer... Try this: http://tredosoft.com/IE7_standalone ... and the opposite: ie3 to ie6, standalone. Wow Franck, you are still testing in IE3? ;-) --Klaus

Re: [jQuery] jquery update causes js error

2006-10-09 Thread Michael Geary
Thank you very much! That was it. [Object.prototype.objRef = null;] Any idea why that would have been done in the first place? Probably because the person who wrote that code didn't know any better! I ran into another issue that all my for loops in code I added to mscross were

[jQuery] IE7 and document.ready

2006-10-09 Thread Webunity | Gilles van den Hoven
Hi Guys, Just found another document.ready bug at least i hope it is a bug :) The document.ready is not firing in IE7 when loading content via ajax into a DIV. Is this a common problem which is allready known? Someone might have a fix for this? The current scenario fires succesfully in both

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Michael Geary
Does anybody know if it is possible to run both IE 6.x and IE7 both on thesame system? An absolute must if you are a web developer... Use VMware and you can run every version of IE, and Firefox, and any other Windows browser you want to test. http://www.vmware.com/ -Mike

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Jörn Zaefferer
Michael Geary schrieb: Does anybody know if it is possible to run both IE 6.x and IE7 both on thesame system? An absolute must if you are a web developer... Use VMware and you can run every version of IE, and Firefox, and any other Windows browser you want to test.

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Franck Marcia
2006/10/9, Klaus Hartl [EMAIL PROTECTED]: Wow Franck, you are still testing in IE3? ;-) I tried to use it, just for fun... but found no fun :-( Franck. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] IE7 and document.ready

2006-10-09 Thread Jörn Zaefferer
Webunity | Gilles van den Hoven schrieb: Hi Guys, Just found another document.ready bug at least i hope it is a bug :) The document.ready is not firing in IE7 when loading content via ajax into a DIV. Is this a common problem which is allready known? Someone might have a fix for this?

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Franck Marcia
2006/10/9, Michael Geary [EMAIL PROTECTED]: Use VMware and you can run every version of IE, and Firefox, and any other Windows browser you want to test. There's also an open source alternative: QEmu (http://fabrice.bellard.free.fr/qemu/) I use it and find it faster than vmware. Franck.

Re: [jQuery] Queueing of effects (fx)

2006-10-09 Thread Andy Matthews
And it occurs from left to right correct John? !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: [jQuery] New Plugin: Xpander

2006-10-09 Thread Ⓙⓐⓚⓔ
super cool! Now I want more! How about a customizable hook for better presentation of href such as x.jpg, or x.mp3? On 10/9/06, Jeffrey McClure [EMAIL PROTECTED] wrote: Here is a demo of the plugin in action: Example: http://labs.activespotlight.net/jQuery/Xpander.html Plugin Source:

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Klaus Hartl
Ⓙⓐⓚⓔ schrieb: You need http://www.browsrcamp.com/ ... real safari via the web! (at least the resultant image of the page)... for free! they even have a priced option for using the other mac browsers and more. I will never understand the use of some screenshots if I want to fix some CSS in

Re: [jQuery] New plugin: sparkline

2006-10-09 Thread Corey Jewett
Fixes for Safari: * Apple added Canvas for Dashboard (Tiger) and backported to Panther (as Safari 1.3), in the Mac world that's virtually everyone. Therefore, I added an explicit pass through for Safari because I can't find documentation for proper object detection. :( * The correct usage

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Dave Methvin
Just to set expectations on timetables, MS said they would eventually push IE7 out as a high-priority patch a few weeks after general release. So although tech-savvy users may be able to download the final IE7 within a week or two--and many already have IE7 RC2--Aunt Abby probably won't have it

Re: [jQuery] Performance question

2006-10-09 Thread Brendan O'Brien
I have a somewhat related observation. I have discovered that when selecting by ID, the context parameter does not matter. In other words, these two statements are functionally equivalent:$(#myId); and$(#myId, myContext);It's as if when the id selector is passed then the $ method just uses a

Re: [jQuery] New plugin: sparkline

2006-10-09 Thread Corey Jewett
Argh! Does the ML reformat email? sparkline.js-safari.patch Description: Binary data On Oct 9, 2006, at 2:03 PM, Corey Jewett wrote: Fixes for Safari: * Apple added Canvas for Dashboard (Tiger) and backported to Panther (as Safari 1.3), in the Mac world that's virtually everyone.

[jQuery] Comparison of jQuery and dojo?

2006-10-09 Thread Sam
Has anyone posted a comparison of the pros and cons of jQuery and dojo? Sam ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Performance question

2006-10-09 Thread Aaron Heimlich
On 10/9/06, Brendan O'Brien [EMAIL PROTECTED] wrote: It's as if when the id selector is passed then the $ method just uses a document.getElementById.Well IDs are supposed to be unique throughout the entire document (i.e. there can be one and only one element in the entire document with an ID of

[jQuery] mp3player plugin

2006-10-09 Thread David
hey, I updated my mp3player plugin with an option to play a file on start up and choice of flash player. I also documented the options in the source file. to counter the flickering in IE please use the hack found in the discussion list or another solution. I would like some feedback, thank

[jQuery] new jquery breaks $(document).load ?

2006-10-09 Thread tomás pollak
hello everyone, i'm currently developing a site for which jQuery has proven to be more than useful. the problem is that I updated the .js (I'm using the compressed one) since I was having problems with the Interface plugin (jQuery is not defined). however, now the page won't execute whats inside

[jQuery] Sifr jQuery hack

2006-10-09 Thread Yehuda Katz
So I had the need today to use jQuery selectors in SIFR (whose selectors are pretty weak). Unfortunately, sifr only takes selectors, so I did a little hacking:Added the following on line 454 of sifr.js /* Check if we can find any nodes first */ if(sSelector.parentNode) { listNodes =

Re: [jQuery] new jquery breaks $(document).load ?

2006-10-09 Thread tomás pollak
$(document).ready doesn't work every time. that's why I had to use .load. is there a reason as to why .load breaks in the new versions of jquery? Use $(document).ready(function() { //stuff }); On 10/9/06, tomas pollak [EMAIL PROTECTED] wrote: hello everyone, i'm currently developing a

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Gordon Heydon
Hi, Webunity|Gilles van den Hoven wrote: Rey Bango wrote: If you don't want to upgrade, be very vigilant about what automatic updates you install during MS' normal patch cycle: Does anybody know if it is possible to run both IE 6.x and IE7 both on thesame system? An absolute must if

Re: [jQuery] Performance question

2006-10-09 Thread Michael Geary
From: Brendan O'Brien I have a somewhat related observation. I have discovered that when selecting by ID, the context parameter does not matter. In other words, these two statements are functionally equivalent: $(#myId); and $(#myId, myContext); It's as if when the id selector

Re: [jQuery] new jquery breaks $(document).load ?

2006-10-09 Thread Matt Stith
ready is fixed in the new versions, it works fine in all supported browsers. On 10/9/06, tomás pollak [EMAIL PROTECTED] wrote: $(document).ready doesn't work every time. that's why I had to use .load. is there a reason as to why .load breaks in the new versions of jquery? Use

Re: [jQuery] new jquery breaks $(document).load ?

2006-10-09 Thread John Resig
$(document).ready doesn't work every time. that's why I had to use .load. When does .ready break? It shouldn't break in any modern browser. Do you think you could clarify the situation at all? --John ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] new jquery breaks $(document).load ?

2006-10-09 Thread tomás pollak
you're right. it does work all the time. however, the AJAX .load function doesn't. could it be because the call is being made inside a normal JS function? On 10/9/06, Matt Stith [EMAIL PROTECTED] wrote: ready is fixed in the new versions, it works fine in all supported browsers. On 10/9/06,

Re: [jQuery] mp3player plugin

2006-10-09 Thread Rafael Santos
pls show us the docs and the source again, i havent tagged it on delicious yet.. =)and there may have new ppl on the list who would like to have it on their gmail account.. hehehe 2006/10/9, David [EMAIL PROTECTED]: hey,I updated my mp3player plugin with an option to play a file on start upand

Re: [jQuery] How to implement file upload using AJAX?

2006-10-09 Thread ashutosh bijoor
Refer messagehttp://jquery.com/discuss/2006-August/009877/if anyone is in the mood for creating an upload plugin :-) On 10/9/06, Brian Miller [EMAIL PROTECTED] wrote: You can't use ajax to send files.It's not supported because it's notpermitted.The libraries that do it (e.g. Yahoo UI) create a

Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Rey Bango
Great points Dave. I'm more concerned about people that have automatic updates set to just install versus prompting. Thats why I sent out this alert. Considering how MS threw in WGA as a critical update for many Windows users without really letting them know what they were getting, I wouldn't

[jQuery] jQuery 1.0.2

2006-10-09 Thread John Resig
Hi Everyone - jQuery 1.0.2 is now ready for consumption! This release is a huge bug fix release - and it is highly recommended that you upgrade right away. As always, if you spot a bug, please add it to the bug tracker. In addition to having a better test suite, a big push for this release was

Re: [jQuery] jQuery 1.0.2

2006-10-09 Thread j_birch
Quoting John Resig [EMAIL PROTECTED]: jQuery 1.0.2 is now ready for consumption! Thank you so much. I'd like to take this opportunity to introduce everyone to Jörn Zaefferer. Love that guy! ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] jQuery 1.0.2

2006-10-09 Thread Will Arp
Thank you John Jörn all 8) -will ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery 1.0.2

2006-10-09 Thread Blair McKenzie
Yes, we all know how much work is involved in fixing bugs. Thanks to both of you. :)BlairOn 10/10/06, Will Arp [EMAIL PROTECTED] wrote:Thank you John Jörn all8)-will___ jQuery mailing listdiscuss@jquery.comhttp://jquery.com/discuss/

Re: [jQuery] jQuery 1.0.2

2006-10-09 Thread Rey Bango
Thanks for your efforts gents! Rey John Resig wrote: Hi Everyone - jQuery 1.0.2 is now ready for consumption! This release is a huge bug fix release - and it is highly recommended that you upgrade right away. As always, if you spot a bug, please add it to the bug tracker. In addition to

  1   2   >