[jQuery] Re: jCarousel flicker in FF 2.0

2007-06-10 Thread Jan Sorgalla
Hi, On 11 Jun., 00:38, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm trying to implement jCarousel (0.2.0-beta) and am having trouble > with it in Firefox 2.0/Win XP > > http://www.homefront.tv/clients/gephardt/build/flicker.html > > After the slide effect, there's a flicker of white.

[jQuery] Re: jquery is'nt very effective at execution

2007-06-10 Thread mathmax
this test : if( tbxValue != lastTbxValue ) will always return false because the function each() monoplize the unique thread. The event "onkeyup" from the textbox couldn't occur while each() is running, so tbxValue remains the same in the meantime. Dan G. Switzer, II wrote: > > >>Thank you.

[jQuery] Re: jquery is'nt very effective at execution

2007-06-10 Thread Dan G. Switzer, II
>Thank you. > >Is it possible to interrupt the script each time the user enter a new >letter >in the search box ? What I'd recommend doing is building in a setTimeout() delay that would only fire off the event if the user pauses typing--that way you're not trying to fire it off for every keystrok

[jQuery] Re: jquery is'nt very effective at execution

2007-06-10 Thread mathmax
Thank you. Is it possible to interrupt the script each time the user enter a new letter in the search box ? Dan G. Switzer, II wrote: > > >>http://fra.orkos.com/produits/tarifs.aspx Here is a page which I made. >>This >>page presents a list of products classified in a hierarchy. I have a >

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Matt Stith
IE would throw an exception and try to install adware on your computer. :P On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: WWIED? What would IE do? On 6/10/07, Matt Stith <[EMAIL PROTECTED]> wrote: > > o.O damn, like you said, i didnt know there was that big of a > difference! > > On 6/10/07, Ⓙⓐⓚⓔ

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Ⓙⓐⓚⓔ
going for a split that when concatenated returns the original ... \b is what I tried... it works for all but opera. I didn't care that safari thinks there's an extra at the end... but when Opera came back with 15 (each character) I laughed! "hello there Opera" should split into 5 s

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Michael Geary
What result you are looking for? \b and \s+ are radically different from each other. \b is an anchor that matches no characters. \s+ is a pattern that matches one or more whitespace characters. It's kind of unusual to use a non-matching anchor like \b in a .split, so I guess it's not too surpris

[jQuery] Re: jquery is'nt very effective at execution

2007-06-10 Thread Dan G. Switzer, II
>http://fra.orkos.com/produits/tarifs.aspx Here is a page which I made. >This >page presents a list of products classified in a hierarchy. I have a >textbox >that allows the user to filter these products. Try to type a text in this >textbox (for example the word "apple") and observe the speed of

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Ⓙⓐⓚⓔ
WWIED? What would IE do? On 6/10/07, Matt Stith <[EMAIL PROTECTED]> wrote: o.O damn, like you said, i didnt know there was that big of a difference! On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED] > wrote: > > safari says 3 for > javascript:alert("hello there Opera".split(/(\s+)/).length) > > > On 6/10/07

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Matt Stith
o.O damn, like you said, i didnt know there was that big of a difference! On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: safari says 3 for javascript:alert("hello there Opera".split(/(\s+)/).length) On 6/10/07, Matt Stith < [EMAIL PROTECTED]> wrote: > > why not just use /(\s+)/ in firefox too th

[jQuery] Re: Selector Help - hover and dblclick

2007-06-10 Thread Brad Perkins
Unbinding the hover and dblclick events when the row is double clicked works nicely. Now I've got another question. The customer wants to use double click for row selection instead of a single click. One side-affect of using double click is that doing so will select and highlight the text in the

[jQuery] Re: jquery is slow at execution

2007-06-10 Thread mathmax
Thank you for your answer. With your code, the script is much faster, but it however remains much much slower than writing "normal" javascript You can compare the performances, I update the script with your line of code. Renato Formato wrote: > > > mathmax ha scritto: >> >> When I discover

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Ⓙⓐⓚⓔ
safari says 3 for javascript:alert("hello there Opera".split(/(\s+)/).length) On 6/10/07, Matt Stith <[EMAIL PROTECTED]> wrote: why not just use /(\s+)/ in firefox too then? It gives me the correct number of 5. On 6/10/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED]> wrote: > > javascript:alert("hello there Ope

[jQuery] Re: jquery is slow at execution

2007-06-10 Thread Renato Formato
mathmax ha scritto: When I discovered jquery, I wanted immediately to remake this script to see how shorter the script could be. I was however quickly stopped by the performances... Here, you can see the http://fra.orkos.com/tests/pricelist/ same page but the research script has been replaced

[jQuery] jCarousel flicker in FF 2.0

2007-06-10 Thread [EMAIL PROTECTED]
I'm trying to implement jCarousel (0.2.0-beta) and am having trouble with it in Firefox 2.0/Win XP http://www.homefront.tv/clients/gephardt/build/flicker.html After the slide effect, there's a flicker of white. I don't have the same problem in IE 6 or 7. I'm using the most up to date versio

[jQuery] jquery form plugin - double action (fadein) problem

2007-06-10 Thread slakoz
hello, i have (very simple) problem. what i want to do: when form is submited, i must deliver the data from server to two separate divs (in the same page, one html file) so i use the code: $('form#obiekty').ajaxForm({ target: '#oblist , #oblist2', success: function() { $('#oblist').fadeIn('slow

[jQuery] Re: Selector Help - hover and dblclick

2007-06-10 Thread Brad Perkins
Thanks for the suggestion. I'll give that a try. While I was away I was thinking about this and realized another solution might be to unbind the hover and dblclick events from the row when it is double-clicked. On Jun 10, 1:49 pm, "R. Rajesh Jeba Anbiah" <[EMAIL PROTECTED]> wrote: > On Jun 11, 1

[jQuery] update input text when tick radio

2007-06-10 Thread sublimenal
Hello, is it possible to update a when you tick a ? Basicly I will have a bunch of radios and when you tick it, it shoud update the input with the value of that radio that the user ticked. Thanks in advance.

[jQuery] Re: Jquery similar to twinhelix's supernote js

2007-06-10 Thread sozzi
>From our description you are not exactly looking for a tool-tip solution, more a sticky note solution. Have a look at: http://dev.iceburg.net/jquery/jqModal/ jqModal example 3c should be doing what you are looking for. Have a nice weekend. On Jun 8, 3:11 pm, [EMAIL PROTECTED] wrote: > Still no

[jQuery] jquery is slow at execution

2007-06-10 Thread mathmax
http://fra.orkos.com/produits/tarifs.aspx Here is a page which I made. This page presents a list of products classified in a hierarchy. I have a textbox that allows the user to filter these products. Try to type a text in this textbox (for example the word "apple") and observe the speed of filte

[jQuery] jquery is'nt very effective at execution

2007-06-10 Thread mathmax
http://fra.orkos.com/produits/tarifs.aspx Here is a page which I made. This page presents a list of products classified in a hierarchy. I have a textbox that allows the user to filter these products. Try to type a text in this textbox (for example the word "apple") and observe the speed of filte

[jQuery] Re: Even Dojo site uses jQuery

2007-06-10 Thread Jörn Zaefferer
Michael Geary wrote: From: Michael E. Carluen http://dojotoolkit.org/developer Yes, the "list" continues to grow. I find it a little amusing to see that even the Dojo site uses jQuery and its plugins. That's a good find! :-) Dojo converted their site to Drupal, so of course it uses jQ

[jQuery] Re: More Superfish menu examples

2007-06-10 Thread Jörn Zaefferer
Sapphire wrote: Joel: Very well done. With regards to the horizontal ones, it would be nice if the submenus remain visible on mouseout. That would make it easier to know where you are on a site with this type of menu. Oh well, what he says! -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: More Superfish menu examples

2007-06-10 Thread Jörn Zaefferer
Joel Birch wrote: I hope this helps or inspires someone in some way. Yes! I really like this one: http://users.tpg.com.au/j_birch/plugins/superfish/all-horizontal-example/ I'd like to see a small modification: Don't close the submenus on mouseout. The horizontal space is reserved anyway, so th

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Matt Stith
why not just use /(\s+)/ in firefox too then? It gives me the correct number of 5. On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: javascript:alert("hello there Opera".split(/\b/).length) Firefox says 5 , safari says 6, Opera says 15! it really got me confused while writing some jQuery code! now

[jQuery] Re: Selector Help - hover and dblclick

2007-06-10 Thread R. Rajesh Jeba Anbiah
On Jun 11, 12:06 am, Brad Perkins <[EMAIL PROTECTED]> wrote: > Ultimately, I'd also like to prevent the double clicked row from > running code if previously double clicked. I suppose, you could do something like: if (this.done) return; and this.done=true; accordingly in the function

[jQuery] [ot] String.split in Opera.

2007-06-10 Thread Ⓙⓐⓚⓔ
javascript:alert("hello there Opera".split(/\b/).length) Firefox says 5 , safari says 6, Opera says 15! it really got me confused while writing some jQuery code! now I use $.browser.opera ? /(\s+)/ : /\b/ ; instead. Ouch, I didn't realize there was that much of a difference!

[jQuery] Re: Even Dojo site uses jQuery

2007-06-10 Thread Michael Geary
> From: Michael E. Carluen > > http://dojotoolkit.org/developer > > Yes, the "list" continues to grow. I find it a little amusing > to see that even the Dojo site uses jQuery and its plugins. That's a good find! :-) Dojo converted their site to Drupal, so of course it uses jQuery just like an

[jQuery] Re: More Superfish menu examples

2007-06-10 Thread Cees
Hi Joel, Thx very much for the examples you made - i am a fan of vertical menus and your examples matches my taste very wel ;-)) As for the highlighting of active node - i think that is not a part of the Superfish method and should be handled outside it - its not that hard to do with some CSS co

[jQuery] Selector Help - hover and dblclick

2007-06-10 Thread Brad Perkins
In a table like this: Item One Two Three I want to highlight the rows when hovered. I also wan't to set a different background color on the row when double clicked. I have the following jquery code: $(document).ready( function() { $("[EMAIL PRO

[jQuery] Even Dojo site uses jQuery

2007-06-10 Thread Michael E. Carluen
http://dojotoolkit.org/developer Yes, the "list" continues to grow. I find it a little amusing to see that even the Dojo site uses jQuery and its plugins.

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
keep me posted!! You may also need : ajaxSetup({contentType: "application/x-www-form-urlencoded; charset="}) On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: Oscar, you can play with the jQuery from my branch (not released, and just to try it... no guarantees!!) http://jqueryjs.googlecode.com/sv

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
Oscar, you can play with the jQuery from my branch (not released, and just to try it... no guarantees!!) http://jqueryjs.googlecode.com/svn/branches/jake-dev/dist/ On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: oops! that's on the googlegroups site. On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
oops! that's on the googlegroups site. On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: $.pair = function(f,v) {return escape(f) + "=" + escape(v)}; and all your 'get' parameters use the new encoding. If you care to test... I'll save up a full version on the escape is brain dead , as it won't wo

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
$.pair = function(f,v) {return escape(f) + "=" + escape(v)}; and all your 'get' parameters use the new encoding. If you care to test... I'll save up a full version on the escape is brain dead , as it won't work with the full range of UTF... but the classic hi-ascii chars seem to work.. I teste

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread oscar esp
You are the man :-P In order to use it. then I only need add the js ¿? or I need to call a extra code!!! On 10 jun, 18:44, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > Hey Oscar, You were the reason I wrote this patch!!! Plus I had no beautiful > way to do non-utf encoding > > A couple people ca

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
Hey Oscar, You were the reason I wrote this patch!!! Plus I had no beautiful way to do non-utf encoding A couple people came up with other solutions, but I like mine best, and it shrinks the jQuery size a few bytes. On 6/10/07, oscar esp <[EMAIL PROTECTED]> wrote: Hi I have a problem realted

[jQuery] Re: More Superfish menu examples

2007-06-10 Thread Joel Birch
On 10/06/2007, at 11:05 PM, Olivier Percebois-Garve wrote: Really nice. On the multi-tier-all-horizontal-example look at the right side of the second cell in the second row. There is a 1px glitch (FF). A nice thing would be support for highlighting arbitrary nodes (to indicate the current

[jQuery] Re: Use a link to submit a form w/ the form plug-in

2007-06-10 Thread Mike Alsup
Great technique, Karl! On 6/10/07, Karl Rudd <[EMAIL PROTECTED]> wrote: This has come up a number of times. My suggestion is to use a "proxy link". When the link is pressed it "clicks" the button. That way you don't need to modify any of the backend code, and it will work without JavaScript

[jQuery] Re: More Superfish menu examples

2007-06-10 Thread John Farrar
Joel, The horizontal menus look like a grid more than a menu system. We call this technology site nav bars. The second line is free floating (i.e. it doesn't grid align itself to the row above.). I might go ahead and refactor some code I have done this with before and add it to jQuery as a pl

[jQuery] Re: More Superfish menu examples

2007-06-10 Thread John Farrar
Joel, The horizontal menus look like a grid more than a menu system. We call this technology site nav bars. The second line is free floating (i.e. it doesn't grid align itself to the row above.). I might go ahead and refactor some code I have done this with before and add it to jQuery as a plugin

[jQuery] Re: Tree with drag&drop + sortable functionality

2007-06-10 Thread John Farrar
Actually this is not true in my case Dan. In fact my goal is to create libraries and projects that can be used by others, simular to how jQuery is used. That lisc doesn't facillitate embedding EXT so that others can use the stuff I build in on my 250 lisc. I do have an email that was sent to them

[jQuery] Re: More Superfish menu examples

2007-06-10 Thread Olivier Percebois-Garve
Really nice. On the multi-tier-all-horizontal-example look at the right side of the second cell in the second row. There is a 1px glitch (FF). A nice thing would be support for highlighting arbitrary nodes (to indicate the current page of the website) olivier Joel Birch wrote: Thanks!

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread oscar esp
Hi I have a problem realted with charsets as you know. Could I use this code in order to fix my problem? On 10 jun, 06:00, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > http://dev.jquery.com/ticket/1289 > > On 6/9/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > > > > > > > > > Be sure to add this to trac.

[jQuery] Re: Use a link to submit a form w/ the form plug-in

2007-06-10 Thread Karl Rudd
This has come up a number of times. My suggestion is to use a "proxy link". When the link is pressed it "clicks" the button. That way you don't need to modify any of the backend code, and it will work without JavaScript on. Something like this: $(function() { $('input.proxy').each( funct

[jQuery] Re: Selecting the first TD of every Row

2007-06-10 Thread Mehmet AVSAR
$("tr").each(function() { $("TD", $(this)).get(0).addClass("tomas") }); On Jun 8, 6:40 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > > $('tr > td').addClass("tomas"); > > actually, that will select all elements that are children of a > element -- in other words, all elements. > > Try this i

[jQuery] Re: Use a link to submit a form w/ the form plug-in

2007-06-10 Thread Ken Iovino
errr.. addictive. :) On Jun 9, 8:10 am, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > Ken, > > You can call ajaxSubmit from the anchor's click handler, but in > general this is not a good way to submit forms because it won't work > when JavaScript is disabled. It makes more sense to use abutton > el

[jQuery] Re: More Superfish menu examples

2007-06-10 Thread Joel Birch
Thanks! Good point about the horizontal menus - I agree. I'll have a think about how best to achieve that. It might require some javascript alterations whereas these examples are achieved purely with CSS alterations to the original example. Thanks for the feedback. Joel. On 10/06/2007,

[jQuery] Re: More Superfish menu examples

2007-06-10 Thread Sapphire
Joel: Very well done. With regards to the horizontal ones, it would be nice if the submenus remain visible on mouseout. That would make it easier to know where you are on a site with this type of menu. Good job! -- Sapphire On Sunday 10 June 2007 01:13:26 am Joel Birch wrote: > Hi friends