Re: [jQuery] Fisheye

2006-09-30 Thread Dan Atkinson
I've got a huge smile on my face right now! You've done a great job on this total source weighs in at about 8kb + jQuery, which is great as iUtil.js is resuable for other functions as well. Excellent work Stefan! Really great! Now Dojo has one less cool thing that jQuery hasn't! ;) Stefan

Re: [jQuery] Passing current object to function

2006-09-30 Thread Christof Donat
Hi, I'm attempting to get the href element for the first link it finds and then set that as the url for the entire row's on-click event. Do you mean something like this? $.fn.tableHover = function(hoverClass) { $(tr,this).click(function() { window.location.href =

Re: [jQuery] Passing current object to function

2006-09-30 Thread Mungbeans
Christof Donat wrote: $.fn.tableHover = function(hoverClass) { $(tr,this).click(function() { window.location.href = $(this).find('a')[0].href; }).hover(function() { $(this).addClass(hoverClass); }, function() {

Re: [jQuery] jEditable in place editor plugin

2006-09-30 Thread Mika Tuupola
On Sep 29, 2006, at 17:50, Mika Tuupola wrote: I have a suggestion for improvement. How about sizing the text inputs so they are the same size as the content you are editing? i.e. basically it would just add a border around the text (to indicate you are editing it) Good idea. They could be

Re: [jQuery] mouse gestures?

2006-09-30 Thread Blair McKenzie
This seemed like an interesting problem so I've attempted to solve it. Be kind.BlairOn 9/30/06, Matt Stith [EMAIL PROTECTED] wrote: This is the closest i've found:http://bradfitz.com/hacks/gestures/ On 9/29/06, Brian Litzinger [EMAIL PROTECTED] wrote: Has anyone done any work with mouse

Re: [jQuery] clone() returning the cloned objects instead of a reference

2006-09-30 Thread Renato Formato
Anyway, why a clone() affects the object. Cloning should only create a copy object, not affect the state of the original one. I think it is because you may want to chain methods on the cloned object. If clone() does not substitute the cloned object with the original one, you could not call

Re: [jQuery] DD's got a problem

2006-09-30 Thread Webunity | Gilles van den Hoven
Use this code instead: $(document).ready(function() { $('#foo').find('dd').hide().end().find('dt').click(function() { $(this).find('dd').each(function() { if ($(this).is(':visible')) { $(this).slideUp();

[jQuery] iUtil use it

2006-09-30 Thread kenton.simpson
Even if your not using the interface plugin you need down load the iUtil plugin and start using it. I even think that iUtil should go core. Thanks Stefan Petre -- View this message in context: http://www.nabble.com/iUtil-use-it-tf2362236.html#a6580883 Sent from the JQuery mailing list archive

Re: [jQuery] clone() returning the cloned objects instead of a reference

2006-09-30 Thread Raziel Alvarez
Ok, I won't argue anymore about the clone(), though I think it's not the behaviour that anyone expects (think on the cloneNode() function) and the documentation then is incorrect or very very confusing: Create cloned copies of all matched DOM Elements. This does not create a cloned copy of this

Re: [jQuery] iUtil use it

2006-09-30 Thread Corey Jewett
A link would be terribly useful when promoting something this hard. :) Corey On Sep 30, 2006, at 9:39 AM, kenton.simpson wrote: Even if your not using the interface plugin you need down load the iUtil plugin and start using it. I even think that iUtil should go core. Thanks Stefan

Re: [jQuery] iUtil use it

2006-09-30 Thread kenton.simpson
I don't want to hot link the file, but you can find it here http://interface.eyecon.ro/download Corey Jewett-3 wrote: A link would be terribly useful when promoting something this hard. :) Corey On Sep 30, 2006, at 9:39 AM, kenton.simpson wrote: Even if your not using the

Re: [jQuery] iUtil use it

2006-09-30 Thread Michael Geary
Even if your not using the interface plugin you need down load the iUtil plugin and start using it. I even think that iUtil should go core. A link would be terribly useful when promoting something this hard. :) I don't want to hot link the file, but you can find it here

Re: [jQuery] iUtil use it

2006-09-30 Thread Brandon Aaron
It is any of the downloads. Just download the uncompressed version at the bottom of the page and iUtil is in there. -- Brandon Aaron On 9/30/06, Michael Geary [EMAIL PROTECTED] wrote: Even if your not using the interface plugin you need down load the iUtil plugin and start using it. I

Re: [jQuery] iUtil use it

2006-09-30 Thread Karl Swedberg
On Sep 30, 2006, at 1:16 PM, Michael Geary wrote: Even if your not using the interface plugin you need down load the iUtil plugin and start using it. I even think that iUtil should go core. A link would be terribly useful when promoting something this hard. :) I don't want to hot link the

[jQuery] contextMenu

2006-09-30 Thread Andre Lewis
I was upgrading one of my older projects today (from jQuery rev 29 !), and noticed that event.contextMenu went away. It looks like it was dropped at 1.0 -- is there a reason it was dropped?Thanks,Andre ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] iUtil use it

2006-09-30 Thread kenton.simpson
Iutil defines these function getPos, getPosition, getSize, getClient, getScroll, getMargins, getPadding, getBorder, getPointer. There names go a long way to describe there function. Most if not all the function return objects with dimensional info about the passed element node. I recently used it

Re: [jQuery] 3D Carousel

2006-09-30 Thread Patrick Hall
On 9/30/06, Stefan Petre [EMAIL PROTECTED] wrote: http://interface.eyecon.ro/development/demos/carousel.html whoa. that rocks. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] 3D Carousel

2006-09-30 Thread Stefan Nagtegaal
Op 30-sep-2006, om 21:19 heeft Stefan Petre het volgende geschreven: http://interface.eyecon.ro/development/demos/carousel.html Unfortunatly it doesn't work in Safari (2).. :-( Steef ___ jQuery mailing list discuss@jquery.com

[jQuery] $.ajax(...) not working under IE

2006-09-30 Thread Balkanski
Hi, I tried following : $.ajax({ type: 'GET', url: 'php/query/product.php?id=1', success: function(response){ alert(response.id); } }); the php script throws {id:1} (JSON notation data) The alert under IE is 'undefined'; If I alert (response) - 'object' is displayed. I

Re: [jQuery] iUtil use it

2006-09-30 Thread John Resig
Kenton - A lot of what you're talking about is already, or is going to be, added in to the Dimensions module in jQuery: http://jquery.com/dev/svn/jquery/src/dimensions/dimensions.js Paul has been working on it - and working with Stefan, to try and move nearly all of the important iUtil parts

Re: [jQuery] DD's got a problem

2006-09-30 Thread Jörn Zaefferer
Webunity | Gilles van den Hoven schrieb: Use this code instead: $(document).ready(function() { $('#foo').find('dd').hide().end().find('dt').click(function() { $(this).find('dd').each(function() { if ($(this).is(':visible')) {

Re: [jQuery] 3D Carousel

2006-09-30 Thread Blair McKenzie
Nice!On 10/1/06, Stefan Nagtegaal [EMAIL PROTECTED] wrote: Op 30-sep-2006, om 21:19 heeft Stefan Petre het volgende geschreven: http://interface.eyecon.ro/development/demos/carousel.htmlUnfortunatly it doesn't work in Safari (2).. :-( Steef___jQuery

Re: [jQuery] 3D Carousel

2006-09-30 Thread Matt Stith
Wow.. im definatly going to be using this one! Thanks!On 9/30/06, Stefan Petre [EMAIL PROTECTED] wrote: http://interface.eyecon.ro/development/demos/carousel.html ___jQuery mailing listdiscuss@jquery.comhttp://jquery.com/discuss/

Re: [jQuery] $.ajax(...) not working under IE

2006-09-30 Thread Blair McKenzie
response is the XMLRequest whatsit. This is so you can access response headers if you need to. So if the result is JSON:$.ajax({ type: 'GET', url: 'php/query/product.php?id=1', success: function(response){ var result = eval((+response.responseText+)); alert(result .id); } });On 9/29/06,

[jQuery] Chainable if/else - hot or not?

2006-09-30 Thread Jörn Zaefferer
Hi folks, the thread about showing and hiding DDs when clicking DTs gave me an idea for a chainable if/else construct. I have implemented and tested it and now I'd like to know if this is useful enough to be released as a plugin or even adding to the core. Basically I extended the current

Re: [jQuery] DD's got a problem

2006-09-30 Thread Blair McKenzie
>From what I understand of the _expression_ handling code, this would require hard coding and not just a new selector. P could try using this instead (with some tweaking :) ):$(document).ready(function() { $('#foo dt').click(function() { var show=false;var self=this;

Re: [jQuery] Chainable if/else - hot or not?

2006-09-30 Thread Blair McKenzie
That would definitely make my solution simpler. If it doesn't add too much to the core size, then I'd say yes.On 10/1/06, Jörn Zaefferer [EMAIL PROTECTED] wrote:Hi folks,the thread about showing and hiding DDs when clicking DTs gave me an idea for a chainable if/else construct. I have implemented

Re: [jQuery] Chainable if/else - hot or not?

2006-09-30 Thread John Resig
Well done, Jörn! It makes me remember the work of John Klinger: http://jquery.com/discuss/2006-July/#7292 It reminded me of that too. I kind of like the simplicity of this solution. Doing a chainable .else() like what John K did is fundamentally really hard. --John

Re: [jQuery] mouse gestures?

2006-09-30 Thread Brian Litzinger
This is really good, and written better than what I could have done. In my case I'm needing it to affect numerous elements on the page such as li.sortableitem's. It doesn't seem to be allowing me to get the id of which element is clicked on. -- View this message in context:

Re: [jQuery] Chainable if/else - hot or not?

2006-09-30 Thread John Resig
Although, going back through his code - I really like what he did. He made it such that you no longer had to use anonymous function wrappers - which I really like. It'd be really cool to be able to do: $(#foo) .find(div) .click() .filter(.someclass)

[jQuery] Community project? Help revive the Lakota language

2006-09-30 Thread Patrick Hall
Hi folks, I apologize in advance for the length of this post, but I have a potential community project which could show off jQuery's chops, and help some people out at the same time. Here's the background: Through my blog I've ended up in contact with someone who is working on helping to teach

Re: [jQuery] 3D Carousel

2006-09-30 Thread Will Jessup
Stefan , Should use my 3d rotator for this ^_^ will http://interface.eyecon.ro/development/demos/carousel.html ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ ___ jQuery

Re: [jQuery] mouse gestures?

2006-09-30 Thread Kurt Mackey
I just saw this discussion here. http://episteme.arstechnica.com/eve/forums/a/tpc/f/6330927813/m/378000821831 Looks like the translated version of this should work: document. () { return false; } // IE document. () { return false; } // Others -Kurt From: [EMAIL PROTECTED]

[jQuery] jQuery buggy in IE7

2006-09-30 Thread Joe
Has there been much testing with IE7 RC1? Some of the code I'm writing that uses a lot of slides, fades and cloning works fine simultaneously in FF1.5.0.7, Opera 9.0.2 and Safari 2.0.4 but breaks in IE7 RC1. I'm getting a "This command is not supported." in line 133. I'm not going to dump my

Re: [jQuery] jQuery buggy in IE7

2006-09-30 Thread John Resig
Have you tried it in IE 6? If I remember correctly, IE has issues changing input types from one type to another - someone can correct me on that if I'm mistaken. --John On 9/30/06, Joe [EMAIL PROTECTED] wrote: Has there been much testing with IE7 RC1? Some of the code I'm writing that uses a

Re: [jQuery] Help with the SVN Build Process

2006-09-30 Thread Joel Birch
Hi folks! I am a graphic designer who has taught myself web development over the last few years. I have been using jQuery for the behaviour layer of a site since maybe March this year and absolutely love it. From a Mac-oriented, drag and drop,user-friendly perspective, jQuery makes

Re: [jQuery] FadeIn Question

2006-09-30 Thread Klaus Hartl
Glen Lipka schrieb: I am working on a page with some tabs. http://glenlipka.kokopop.com/jQuery/payroll/AssistedPayroll.htm I didn't use the tabs plugin because it seemed to have so much specific css attached to it and I wanted to keep it simple. The main bug I have is that when you

Re: [jQuery] mouse gestures?

2006-09-30 Thread Blair McKenzie
Thanks Kurt, that did the trick. :)On 10/1/06, Kurt Mackey [EMAIL PROTECTED] wrote: I just saw this discussion here. http://episteme.arstechnica.com/eve/forums/a/tpc/f/6330927813/m/378000821831 Looks like the translated version of this should work: document. () { return

Re: [jQuery] Help with the SVN Build Process

2006-09-30 Thread Ⓙⓐⓚⓔ
Sorry! I got make on my machine from installing xcode(from appple) or cpan(cpan.perl.org) or somewhere along the way! I've use it a all the time,,, cpan (the magic perl installer) sometimes fails, so I have to resort to make. make syntax is way out there... ant is cool and xml! good luck