Re: [jQuery] jQuery copy constructor

2006-08-29 Thread Christof Donat
Hi, $.fn.newQuery = function() { var c = $(); c.cur = $.merge([], this.cur); return c; } I don't like the name. Maybe copy states better what the function does. Have you tried this kind of implementaiton: $.fn.copy = function() {return $(this.get());}; I don't know if

Re: [jQuery] jQuery copy constructor

2006-08-29 Thread Michael Geary
From: Ferdinand Beyer What I would really like to see in the standard library is that jQuery objects can be passed to the $() function to obtain a copy: var $a = $('some.query'); var $b = $($a); $b.filter('some.criteria'); // Does not affect $a It looks like jQuery 1.0 does this.

[jQuery] Any mirror to jquery1.0

2006-08-29 Thread Rafael Santos
Hey, i just read its been released jquery.com is offline for me here... can anyone show me mirrors to get it...thx ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Simple autolink and highlight

2006-08-29 Thread kawika k
Some more simple stuff, might be useful for others. Example http://kawika.org/jquery/autolink/ Code jQuery.fn.highlight = function (text, o) { return this.each( function(){ var replace = o || 'span class=highlight$1/span'; $(this).html( html.replace( new

[jQuery] Simple autolink and highlight

2006-08-29 Thread kawika k
Some more simple stuff, might be useful for others. Example http://kawika.org/jquery/autolink/ Code jQuery.fn.highlight = function (text, o) { return this.each( function(){ var replace = o || 'span class=highlight$1/span'; $(this).html( html.replace( new

Re: [jQuery] jQuery copy constructor

2006-08-29 Thread Dave Cardwell
Ferdinand Beyer wrote: What I would really like to see in the standard library is that jQuery objects can be passed to the $() function to obtain a copy: var $a = $('some.query'); var $b = $($a); $b.filter('some.criteria'); // Does not affect $a What do you think about that? Could

[jQuery] jquery 1.0 .css IE -- Change, Bug, ??

2006-08-29 Thread developer
All, I noticed that when I changed over to jquery 1.0 some of my code was not working in IE6. Particularly, whenever I was using .css and a css property that was more than one word. For example, $('#MyDiv').css('border-color', this.value); - This works in FF1.5, Op9, but NOT IE6 However,

[jQuery] Revision 231 cloneNode() Firefox issue

2006-08-29 Thread Steven Wittens
I'm experiencing some problems on a site with some apparently simple code. It used to work with jQuery R226, but when I updated to 1.0 final (R231), it broke in Firefox (Mac) with the following error: Error: $(e.cloneNode(true)) has no properties Source:

[jQuery] del.icio.us powered mp3 player plugin

2006-08-29 Thread David
I made my first plugin for jquery. It's not really a difficult one to program but it adds a nice functionality to your mp3 links. Using the del.icio.us mp3 player you can let people preview your mp3s . The code and an example are on

Re: [jQuery] New Plugin: jQEm - Interact with the base 'em' unit.

2006-08-29 Thread Oliver Boermans
Before setting out to attempt my own jQuery plugin I had a look through the list of existing plugins to see if someone had already contributed a means to convert ems to pixels. I wasn't expecting to find a script that responds to changes as well! This is an ideal foundation onto which I can build.

[jQuery] ping?

2006-08-29 Thread Jason Huck
Testing, please ignore. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] qooxdoo

2006-08-29 Thread Jörn Zaefferer
Has anyone on the list seen qooxdoo (http://qooxdoo.org/ http://service.gmx.net/de/cgi/derefer?DEST=http%3A%2F%2Fqooxdoo.org%2F) yet? The demos are quite impressive. At my first impression, the codebase could be leveraged a lot by using jQuery, maybe implementing the framework as a set of

Re: [jQuery] Distorted fonts (in Opera) with opacity = 0.9999

2006-08-29 Thread Christof Donat
Hi, If I remember correctly, Firefox has an issue with opacity at '1' - I guess I assumed that it was the case in more browsers. I'll add another catch in to fix it (sigh) Have you ever thought about using deans object-Detection-tip for things like this:

[jQuery] Revision 231 cloneNode() Firefox issue

2006-08-29 Thread Steven Wittens
I'm experiencing some problems on a site with some apparently simple code. It used to work with jQuery R226, but when I updated to 1.0 final (R231), it broke in Firefox (Mac) with the following error: Error: $(e.cloneNode(true)) has no properties Source:

[jQuery] qooxdoo

2006-08-29 Thread Jörn Zaefferer
Has anyone on the list seen qooxdoo (http://qooxdoo.org/) yet? The demos are quite impressive. At my first impression, the codebase could be leveraged a lot by using jQuery, maybe implementing the framework as a set of jQuery plugins. What do you think? -- Jörn -- Der GMX SmartSurfer hilft

[jQuery] Server/Mailing List Troubles

2006-08-29 Thread John Resig
Hey Everyone - This morning the jQuery server was very slow and occasionally unresponsive - I fixed it as soon as I woke up and didn't think much more of it. However, this evening it came to my attention that the mailing list hadn't been working all day... oops. It should (hopefully) be fixed now

[jQuery] getIfModified

2006-08-29 Thread Will Jessup
List, I'm looking to see if anyone has experience w/ $.getIfModified in the ajax plug-in. I'm trying to return the GET only if the contents are modified (such as opening a 30 second timeout where it listens for a request, closes if there is nothing and re-opens or returns what it gets if

[jQuery] AJAX Autocomplete + jquery 1.0 (dyve.net)

2006-08-29 Thread Rafael Santos
Hey, i couldnt find the owner of that autocomplete hosted in dyve.net...The autosuggest is working with jquery.com/src/latest.js and isnt working with the 1.0 release... Perhaps he may read it in this discussion...Thx ___ jQuery mailing list

Re: [jQuery] jQuery 1.0

2006-08-29 Thread Andy Matthews
I'd say the more the merrier. Even if no one needs Russian now, they will once they see that Russian is available. :) !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//-

Re: [jQuery] qooxdoo GUI framework

2006-08-29 Thread Blair McKenzie
Your emails have been coming through.BlairOn 8/29/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Okay, third attempt, dunno what I'm doing wrong :/Just wanted to point the list at http://qooxdoo.org/After looking at the demos, it seems to be a quite interessting guiframework. I wonder if the codebase

[jQuery] Interface Elements uncompressed version

2006-08-29 Thread Joerg Zwirner
Does anyone have an uncompressed version of the interface elements plugin or could you repair the link on the http://interface.eyecon.ro/downloadsite? Thank you and best regards Jörg ___ jQuery mailing list discuss@jquery.com

[jQuery] Rounded Corners Plugin Broken with jQuery 1.0

2006-08-29 Thread Jason Huck
Dave Methvin's rounded corners plugin breaks under jquery 1.0. I just tried a local copy of his demo using 1.0 with no other changes, and it doesn't do anything. No errors are reported either (at least in Firefox or Firebug). - jason p.s. - Sorry if this double-posts, I'm not sure the original

Re: [jQuery] getIfModified

2006-08-29 Thread Mike Alsup
Not sure if this is the problem or not but be aware that for 'getIfModified' to work the server must set the 'Last-Modified' header. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Rounded Corners Plugin Broken with jQuery 1.0

2006-08-29 Thread Mike Alsup
I don't have any problem running Dave's plugin with 1.0. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Rounded Corners Plugin Broken with jQuery 1.0

2006-08-29 Thread Sorin Ionescu
Have you tried my plugin? I think it's in the mailing list at the beginning of June or July?On 8/29/06, Mike Alsup [EMAIL PROTECTED] wrote:I don't have any problem running Dave's plugin with 1.0 .___jQuery mailing

[jQuery] Converting XMLDocument to Plain XML?

2006-08-29 Thread Felix Geisendörfer
Hi everybody, I was wondering if there is an easy way to convert an XMLDocument (or childNodes) back into plain xml text? Basically I'm thinking about fetching a XML document, manipulating it with jQuery and then push it back to the server to save the results. This is what I imagine to do:

[jQuery] Revision 231 cloneNode() Firefox issue

2006-08-29 Thread Steven Wittens
(resending, the last copy didn't arrive...? :/ ) I'm experiencing some problems on a site with some apparently simple code. It used to work with jQuery R226, but when I updated to 1.0 final (R231), it broke in Firefox (Mac) with the following error: Error: $(e.cloneNode(true)) has no

Re: [jQuery] jQuery copy constructor

2006-08-29 Thread John Resig
Ferdinand - I just added in object cloning with the constructor function, you can now do: var div = $(div) $(div).find(span) and have the original 'div' still contain what it's supposed to. --John On 8/28/06, Ferdinand Beyer [EMAIL PROTECTED] wrote: Hi! In a recent project I often needed

Re: [jQuery] Interface Elements uncompressed version

2006-08-29 Thread 沈志川 (Benx)
I would like to get the uncompressed version of the interface elements plugin, too!On 8/29/06, Joerg Zwirner [EMAIL PROTECTED] wrote: Does anyone have an uncompressed version of the interface elements plugin or could you repair the link on the http://interface.eyecon.ro/downloadsite? Thank

[jQuery] Problems with jQuery.com?

2006-08-29 Thread Dan Atkinson
Hey all. I'm having some fairly large problems getting a stable connection to the jquery website. I get Wordpress errors when I try to connect to the blog, and getting jquery-1.0.js is hit and miss. Is anyone else having similar problems? -- View this message in context:

Re: [jQuery] Problems with jQuery.com?

2006-08-29 Thread Krzysztof FF
Hi, I'm experiencing the same. Probably this is due to overhelming popularity of jQuery after reaching rel. 1.0. Everybody in the world is trying to get latest version... -- View this message in context: http://www.nabble.com/Problems-with-jQuery.com--tf2177454.html#a6021489 Sent from the

Re: [jQuery] Problems with jQuery.com?

2006-08-29 Thread Dan Atkinson
Cheers. I'm glad I'm not alone in this, but sad that it's down nonetheless! Krzysztof FF wrote: Hi, I'm experiencing the same. Probably this is due to overhelming popularity of jQuery after reaching rel. 1.0. Everybody in the world is trying to get latest version... --

Re: [jQuery] Rounded Corners Plugin Broken with jQuery 1.0

2006-08-29 Thread Yehuda Katz
Can't be. Visual jQuery uses rounded corners, and it works fine.On 8/28/06, Jason Huck [EMAIL PROTECTED] wrote: Dave Methvin's rounded corners plugin breaks under jquery 1.0. I justtried a local copy of his demo using 1.0 with no other changes, and itdoesn't do anything. No errors are reported

[jQuery] where is the animate function ?

2006-08-29 Thread Olivier Mourlevat
looks like it disappeared (but still in the doc)does it mean that the documentation at http://proj.jquery.com/docs/ is deprecated ?is there an updated documentation for the animation package ( http://jquery.com/api/) ?thanks for the help ___ jQuery

Re: [jQuery] del.icio.us powered mp3 player plugin

2006-08-29 Thread Andy Matthews
It never worked for me. IE 6+ for the PC. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf

Re: [jQuery] qooxdoo

2006-08-29 Thread Andy Matthews
Impressive stuff. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Jörn Zaefferer Sent:

Re: [jQuery] Rounded Corners Plugin Broken with jQuery 1.0

2006-08-29 Thread Rafael Santos
I posted about it yesterday... it isnt working, but the jquery released in May works fine...//both packed versions...2006/8/29, Yehuda Katz [EMAIL PROTECTED] :Can't be. Visual jQuery uses rounded corners, and it works fine. On 8/28/06, Jason Huck [EMAIL PROTECTED] wrote: Dave Methvin's rounded

Re: [jQuery] jQuery 1.0 + Thickbox 2 problems?

2006-08-29 Thread Chris Mcleod
Thanks for the reply, Dan. jQuery is the only javascript we're loading (because, frankly, I don't know enough javascript to use anything else!), plus the forms thickbox plugins. I reverted back to the old jquery-svn from the jQuery site (revision 88?) and it all works tickity-boo again. The

Re: [jQuery] jQuery 1.0

2006-08-29 Thread Rexbard
John Resig wrote: So bare with us... I understand your desire to celebrate, even though I don't prescribe to the way you do so. I'll keep my clothes on and just cheer for your accomplishment. ;) Seriously: Congratulations, John. I hope jQuery continues to grow its international success.

[jQuery] Rounded Corners plugin broken with jQuery 1.0?

2006-08-29 Thread Jason Huck
Dropped jQuery 1.0 (uncompressed) into a work in progress and all my rounded corners disappeared. Anyone else using the rounded corners plugin that can verify or potentially offer a fix? Thanks, Jason -- View this message in context:

Re: [jQuery] jQuery copy constructor

2006-08-29 Thread Ferdinand Beyer
Great news! Thanks! John Resig schrieb: Ferdinand - I just added in object cloning with the constructor function, you can now do: var div = $(div) $(div).find(span) and have the original 'div' still contain what it's supposed to. --John

[jQuery] Autocomplete invasion

2006-08-29 Thread Stefan Petre
I know there are there already two solution for autocompletion. But i needed one to integrate with Interface for a project and I thought it will be nice to share it with you. So here it goes: http://interface.eyecon.ro/demos/autocompleter.htmlAttach AJAX driven autocomplete/sugestion box to text

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Andy Matthews
 Stefan... It looks nice, but your test data set is a little small to really test it out. Not enough countries on each continent start with the same few letters. Any chance of either merging your data set into one "world" or changing data sets? !//--andy matthewsweb

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Stefan Nagtegaal
The only thing I'm missing is a Status indicator when the AJAX- request has been started.. Maybe an idea? Steef Op 29-aug-2006, om 16:00 heeft Stefan Petre het volgende geschreven: I know there are there already two solution for autocompletion. But i needed one to integrate with

Re: [jQuery] Rounded Corners plugin broken with jQuery 1.0?

2006-08-29 Thread Dave Methvin
Dropped jQuery 1.0 (uncompressed) into a work in progress and all my rounded corners disappeared. Anyone else using the rounded corners plugin that can verify or potentially offer a fix? Starting with this code: http://methvin.com/jquery/jq-corner-demo.html The original code works fine for me

Re: [jQuery] getIfModified

2006-08-29 Thread Klaus Hartl
Mike Alsup schrieb: Not sure if this is the problem or not but be aware that for 'getIfModified' to work the server must set the 'Last-Modified' header. Careful, if that header isn't set, the AJAX plugin will break Firefox 1.0. I send another mail about this which didn't come through... --

[jQuery] Ajax IfModified mode breaks Firefox 1.0

2006-08-29 Thread Klaus Hartl
Hi, the IfModified mode for Ajax calls may break Firefox 1.0. The following code: var modRes = xml.getResponseHeader(Last-Modified); if ( ifModified modRes ) jQuery.lastModified[url] = modRes; breaks and throws such an exception if such response header is not set: Error: [Exception...

[jQuery] Ajax IfModified mode breaks Firefox 1.0

2006-08-29 Thread Klaus Hartl
Hi, the IfModified mode for Ajax calls may break Firefox 1.0. The following code: var modRes = xml.getResponseHeader(Last-Modified); if ( ifModified modRes ) jQuery.lastModified[url] = modRes; breaks and throws such an exception if such response header is not set: Error: [Exception...

Re: [jQuery] Distorted fonts (in Opera) with opacity = 0.9999

2006-08-29 Thread Klaus Hartl
Joel Birch schrieb: In Mac Firefox, when an element is anything other than opacity:1, the text is rendered 'thinner' or lighter in weight. This means that, for example, when you fadeUp, text is 'light' in weight until opacity:1 is reached. The transition from opacity:.999 to opacity:1

Re: [jQuery] Bug in 226: elem has no properties

2006-08-29 Thread Klaus Hartl
John Resig schrieb: I honestly can't duplicate this bug - I've tried it multiple times, on multiple pages - can you put up a test page so that I can confirm this? John, I could now reproduce it on another page. It happens if you query for elements that are nested that level in one element

[jQuery] Ajax IfModified mode breaks Firefox 1.0

2006-08-29 Thread Klaus Hartl
Hi, the IfModified mode for Ajax calls may break Firefox 1.0. The following code: var modRes = xml.getResponseHeader(Last-Modified); if ( ifModified modRes ) jQuery.lastModified[url] = modRes; breaks and throws such an exception if such response header is not set: Error: [Exception...

[jQuery] css('height') does not work?!

2006-08-29 Thread Klaus Hartl
Hi all, shouldn't css('height') return the height of an element? It doesn't work anymore (Rev 226), but height() does. Or does css('height') not exist anymore in favor of height()? Regards, Klaus ___ jQuery mailing list discuss@jquery.com

[jQuery] Interface Elements uncompressed version

2006-08-29 Thread Stefan Petre
Sorry, I forgot to upload the archive. Now should be on-line. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Autocomplete invasion

2006-08-29 Thread Stefan Petre
@Stefan Nagtegaal: this element acts in a very small portion of the screen and maybe it is used in a more complexed application context. If you want to use AJAX activity indicator then I suggest to use ajaxStart, ajaxStop, ajaxComplete etc from jQuery. @Andy Matthews: The data base had all

[jQuery] slideDown vs. show - overflow

2006-08-29 Thread thrive
Hello - I'm using an async get to fill a div. I found that if I called slideDown() on the div after filling it I usually get text and images overflowing outside of the div. I thought it was one of those css float problems - so I tried adding the lt;br clear=both/gt; hack - but I still had

[jQuery] css('height') does not work?!

2006-08-29 Thread Klaus Hartl
Hi all, shouldn't css('height') return the height of an element? It doesn't work anymore (Rev 226), but height() does. Or does css('height') not exist anymore in favor of height()? Regards, Klaus ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Distorted fonts (in Opera) with opacity = 0.9999

2006-08-29 Thread Klaus Hartl
Joel Birch schrieb: In Mac Firefox, when an element is anything other than opacity:1, the text is rendered 'thinner' or lighter in weight. This means that, for example, when you fadeUp, text is 'light' in weight until opacity:1 is reached. The transition from opacity:.999 to opacity:1

[jQuery] Event Handling Problem

2006-08-29 Thread Jonathan Howard
I'm having an issue in Internet Explorer with the new jQuery 1.0 and event handling. I have a button which I dynamically add an event to (being used as a folder browser). The problem is in IE the button event fires twice, so if I'm two directories down, it goes up two directories on click

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Rexbard
Stefan Petre wrote: http://interface.eyecon.ro/demos/autocompleter.html Stefan, Very nicely done. I only found a couple of issues: If you type enough characters to trigger the autocomplete, then type one more character, the autocomplete closes and you are not given any suggestions. In

Re: [jQuery] del.icio.us powered mp3 player plugin

2006-08-29 Thread Rafael Santos
I like that what about doing a next|previous button...Look: the user could change the songs... i tried it before, but i didnt manage stopping the sound when i remove it...Lets try? =P 2006/8/29, Andy Matthews [EMAIL PROTECTED]: It never worked for me. IE 6+ for the

[jQuery] So what is wrong with ie6 on blur?

2006-08-29 Thread Realazy XA Chen
hi, folks.I set up an example page here: http://realazy.org/temp/tut/form_hover_step3.htmland some js code like this: $([EMAIL PROTECTED]'text'], [EMAIL PROTECTED]'password'], textarea).hover(function(){$(this).addClass(ie_hover)},

[jQuery] svn difficulties

2006-08-29 Thread Marco M. Jaeger
Hello, Am I the only have currently having trouble to download the latest files this is the error Im getting all the sudden: Error: Cannot replace a directory from within Any ideas am I doing anything wrong? Thank you ___

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Jörn Zaefferer
Rexbard wrote: If you type enough characters to trigger the autocomplete, then type one more character, the autocomplete closes and you are not given any suggestions. Yup. Its looks nice, but is rather unintuitive. I think one of the other autocomplete plugins used caching to load a set of

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Dylan Verheul
On 8/29/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Yup. Its looks nice, but is rather unintuitive. I think one of the other autocomplete plugins used caching to load a set of proposals when there were enough characters, and then reduced the selection when the client enters more characters,

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Stefan Petre
aedmonds wrote: Stefan, The plugin is cool. One request I would have is to have an optional callback parameter when the user selects an item from the list. Thank you for interface! -Aaron Edmonds Stefan Petre wrote: I know there are there already two solution for autocompletion.

Re: [jQuery] AJAX Autocomplete + jquery 1.0 (dyve.net)

2006-08-29 Thread Dylan Verheul
Hi, I'll look into it. Dylan On 8/28/06, Rafael Santos [EMAIL PROTECTED] wrote: Hey, i couldnt find the owner of that autocomplete hosted in dyve.net... The autosuggest is working with jquery.com/src/latest.js and isnt working with the 1.0 release... Perhaps he may read it in this

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Jörn Zaefferer
Stefan Petre wrote: The caching idea is very good. For sure I will implement such a thing. Cool. The demo is on demos page. Ok, but the link is broken. The fx part I will keep it like it is now because it is easier to implement then to explain to starters how they can bind there own

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Jörn Zaefferer
Stefan Petre wrote: Sure, I will implement this option. Any suggestion for the parameters to send to the callback? How about this: text - The text of the selected entry value - The value of the selected entry index - The index of the selected entry in the list of available entries input - The

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Albert Garcia
It'd be great if the autocomplete plugin allow to use one textfield to make multiple suggestions, for comma-separated values, for instance. I'm thinking in the Gmail autocomplete for multiple e-mail addresses in the destination field, or the del.icio.us TAGS field, that suggest you new tags

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Stefan Petre
Jörn Zaefferer wrote: Stefan Petre wrote: Sure, I will implement this option. Any suggestion for the parameters to send to the callback? How about this: text - The text of the selected entry value - The value of the selected entry index - The index of the selected entry in the

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Dylan Verheul
Hi, I updated my autocompleter to work with 1.0. There's a weird CSS bug in the IE version, if someone figures it out, let me know. Stefan: Feel free to use my code, and integrate, daapt or copy it into your suite. We need a good jQuery suite for basic effects, and there should be a good

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Dylan Verheul
You need a callback. Real world example: I select a species thru autocomplete. I need to know how rare a species is inthe form, The autocomplete should pass me that, but it should not show up in the input field. On 8/29/06, Stefan Petre [EMAIL PROTECTED] wrote: Jörn Zaefferer wrote: Stefan

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Stefan Petre
Albert Garcia wrote: It'd be great if the autocomplete plugin allow to use one textfield to make multiple suggestions, for comma-separated values, for instance. I'm thinking in the Gmail autocomplete for multiple e-mail addresses in the destination field, or the del.icio.us TAGS field, that

Re: [jQuery] AJAX Autocomplete + jquery 1.0 (dyve.net)

2006-08-29 Thread Dylan Verheul
Fixed. http://www.dyve.net/jquery?autocomplete Dylan On 8/28/06, Rafael Santos [EMAIL PROTECTED] wrote: Hey, i couldnt find the owner of that autocomplete hosted in dyve.net... The autosuggest is working with jquery.com/src/latest.js and isnt working with the 1.0 release... Perhaps he

Re: [jQuery] Autocomplete invasion

2006-08-29 Thread Stefan Petre
aedmonds wrote: I know that the scriptaculous Autocompleter passed the autocompletion input field and the selected item (the li item selected). But since you are using XML for the response, maybe return the input field and the item that was selected? BTW, you added the Autocomplete to the

Re: [jQuery] svn difficulties

2006-08-29 Thread Franck Marcia
2006/8/29, Marco M. Jaeger [EMAIL PROTECTED]: Am I the only have currently having trouble to download the latest files – this is the error I'm getting all the sudden: Error: Cannot replace a directory from within Any ideas – am I doing anything wrong? I have the same problem but only with

[jQuery] jQuery's submit event handler

2006-08-29 Thread Thasmo
This doesn't work as intended for me:http://pastebin.ca/152458The value of the message field will not be set to an empty string.What's wrong? Is it me? Thanks for help! ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Thickbox 2.0 and Jquery 1.0

2006-08-29 Thread Albert García
Hi everybody, is planned to migrate Thickbox 2.0 to use jquery 1.0 in short term? Now it launches an error on accessing Window.nodeType property. Thanks! --Albert GarciaOboLog » tus pensamientos en redhttp://www.obolog.com___Mi blog en http://obokaman.obolog.com

[jQuery] Vitamin newsletter signup in jQuery?

2006-08-29 Thread Hambo Design \(Steven\)
Is it possible to recreate the newsletter signup at www.thinkvitamin.com using jQuery? I am not very proficient with jQuery (only just used the scroll feature today!). At the moment I have a php form which just squirts an h3 at the beginning if the send is successful but Id love to just

Re: [jQuery] Slidebar with jquery

2006-08-29 Thread testebr
Nice... this example http://interface.eyecon.ro/demos/slider.html is too much uggly ehehhe and dont work in my IE 7. Any alternative? Matt Stith wrote: Try out interface's Slider. http://interface.eyecon.ro/demos On 8/24/06, testebr [EMAIL PROTECTED] wrote: Hi, Anyone know where

[jQuery] Slide

2006-08-29 Thread pinwheel
Hi, I know very little about javascript and I hope someone can help me. I'm trying to make image.gif button that toggles the Hide and Show script pasted below. I read through the jQuery site and I think you are suppose to add $(img).toggle(); to it, but I'm not sure exactly where. Thanks in

[jQuery] Hiding my form when successful

2006-08-29 Thread stinhambo
Hi all, I am really new to this jQueury malarkey but I've managed to add a few plugins etc :) I have a php form and I want to hide the form if the email was successfully sent. Is there a bit of code I can drop in somewhere? Thank you all in advance! -- View this message in context:

Re: [jQuery] So what is wrong with ie6 on blur?

2006-08-29 Thread Aaron Heimlich
InterestingIf I tab through the inputs everything works fine, but if I click into one of the inputs and then click somewhere else on the page the blur event doesn't fire in IE6 or Opera 9.--Aaron On 8/29/06, Realazy XA Chen [EMAIL PROTECTED] wrote: hi, folks.I set up an example page here:

[jQuery] Anomalies using Ajax plugin and IE 6/7

2006-08-29 Thread Jim Davis
I created a test page to tinker with the Ajax plugin and have noted a strange behaviour in IE 6 and 7. The main test page is: http://www.jimdavis.org/test/jq_ajaxtest.html The page is loading http://www.jimdavis.org/test/ajax-test.html and http://www.jimdavis.org/test/ajax-test2.html using

Re: [jQuery] svn difficulties

2006-08-29 Thread Franck Marcia
I have the same problem but only with the read-only access. The authenticated one works. It must come from the last reboot of John's server ;-) No problem with your server, John. Marco, I created a brand new sandbox from svn://jquery.com/jquery and everything works fine. Franck.

Re: [jQuery] del.icio.us powered mp3 player plugin

2006-08-29 Thread John Resig
I like it :-) A simple addition would provide a bunch of functionality: $([EMAIL PROTECTED] $= .mp3]).mp3player(); That will find all links that point to an MP3 file and automatically convert them to an MP3 Player. Keep up the good work! --John On 8/28/06, David [EMAIL PROTECTED] wrote: I

Re: [jQuery] Slidebar with jquery

2006-08-29 Thread Matt Stith
You can change the look to whatever you want.On 8/28/06, testebr [EMAIL PROTECTED] wrote: Nice... this example http://interface.eyecon.ro/demos/slider.html is too muchuggly ehehhe and dont work in my IE 7.Any alternative?Matt Stith wrote: Try out interface's Slider.

Re: [jQuery] animate() support for custom tween/easing 'formulas'

2006-08-29 Thread John Resig
I did some work in this area, too. If it's useful, it's BSD-ed. http://mrclay.org/js/transition/ That is /awesome/. I just keep watching them slide in over-and-over again. I've gotta add this in now ;-) --John ___ jQuery mailing list

Re: [jQuery] Thickbox 2.0 and Jquery 1.0

2006-08-29 Thread Yehuda Katz
I was able to get Thickbox working with no effort at all. What exactly are you trying to do?On 8/28/06, Albert García [EMAIL PROTECTED] wrote: Hi everybody, is planned to migrate Thickbox 2.0 to use jquery 1.0 in short term? Now it launches an error on accessing Window.nodeType property.

Re: [jQuery] Vitamin newsletter signup in jQuery?

2006-08-29 Thread David
A way to go is giving the form and all inputs an id and use the ajax function $.post example : form id=form action=test.php input type=text name=text id=textbr input type=submit value=send id=send /form the javascript code would be $(send).click(function(){ $.post(test.php, {test:

[jQuery] Central Hosting of Latest File

2006-08-29 Thread Lipka, Glen
Have you considered using goggle projects (http://code.google.com/hosting/) to host the central latest file and maybe related plugins? The reason I mention it is because we can all benefit from caching to load the file quickly. Also, I think the popularity of jQuery is going to grow and

[jQuery] help w/ getIfModified

2006-08-29 Thread Will Jessup
Still working on the GetIfModified as outlined here: http://www.mail-archive.com/discuss@jquery.com/msg00481.html Any examples of how to use this properly? I'm not sure how to grab the states success, failure, notomdified etc. will ___ jQuery

Re: [jQuery] Central Hosting of Latest File

2006-08-29 Thread Michael Geary
Have you considered using goggle projects (http://code.google.com/hosting/) to host the central latest file and maybe related plugins? The reason I mention it is because we can all benefit from caching to load the file quickly. Also, I think the popularity of jQuery is going to grow

Re: [jQuery] del.icio.us powered mp3 player plugin

2006-08-29 Thread Franck Marcia
David, I tested it with IE5.5, IE6, IE7RC1, FF1.5.0.6 and Opera9 and it works fine... if you remove object and only keep embed: http://fmarcia.info/jquery/mp3/mp3.html I don't know if object is mandatory for other browsers; if so, you could use $.browser to check it. Franck.

Re: [jQuery] help w/ getIfModified

2006-08-29 Thread Matt Stith
Well with HTTP codes, i know that code 200 is success.. thats about it..On 8/29/06, Will Jessup [EMAIL PROTECTED] wrote:Still working on the GetIfModified as outlined here: http://www.mail-archive.com/discuss@jquery.com/msg00481.htmlAny examples of how to use this properly? I'm not sure how to

Re: [jQuery] help w/ getIfModified

2006-08-29 Thread Shawn Tumey
On 8/29/06, Will Jessup [EMAIL PROTECTED] wrote: Matt,Hehe. well jQuery has quite a bit of cool code I just can't seem to getit to work.Firstly it seem the functions $.ajaxStart, $.ajaxComplete etc. areattached globally and triggered when they should be, 2nd it says that there is a 2nd variable

Re: [jQuery] help w/ getIfModified

2006-08-29 Thread Will Jessup
Shawn , Ah so obvious now, thx. Will On 8/29/06, *Will Jessup* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Matt, Hehe. well jQuery has quite a bit of cool code I just can't seem to get it to work. Firstly it seem the functions $.ajaxStart, $.ajaxComplete etc.

Re: [jQuery] help w/ getIfModified

2006-08-29 Thread Will Jessup
Can anyone decode this for me - alert(res) //null jQuery.ajax( type, url, params,function(res, status){ alert(res) // contains the response code if ( status == success || !ifModified status == notmodified ) { // Inject the HTML into all the matched elements