[jQuery] Re: Too many autocompleter plugins
This was a major reason for moving to YUI on a current project I'm working on. Eric On Jan 27, 10:12 am, Christoph Haas <[EMAIL PROTECTED]> wrote: > Fellow earthicans... > > A year ago I needed an autocompleter and tried Dylan Verheul's plugin > (http://www.dyve.net/jquery/?autocomplete). I found that it lacked a few > things and had some bugs I can't remember any more. Later I stumbled > across a derived version > athttp://www.pengoworks.com/workshop/jquery/autocomplete.htm. It was a bit > better but I couldn't switch off subset matching properly. Example... > > Pengoworks code: > > options.matchSubset = options.matchSubset || 1; > > My patch: > > options.matchSubset = options.matchSubset || 0; > > I'm not sure I'm right here but I couldn't pass on "matchSubset:0" > because the "|| 1" would re-enable it. Or was I missing anything? > > Now I'm stuck with my hacked version of a hacked version of an > autocomplete plugin that may have fixed a few things. Can anybody > enlighten me which autocomplete plugin can decently be used? Thanks. > > Kindly > Christoph > -- > [EMAIL PROTECTED] www.workaround.org JID: [EMAIL PROTECTED] > gpg key: 79CC6586 fingerprint: > 9B26F48E6F2B0A3F7E33E6B7095E77C579CC6586
[jQuery] Re: Image Rotator Plugin?
I was hoping this was going to talk about the latter; rotating an image in degrees (360). On Nov 26, 12:43 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > By rotate, do you mean flipping through a group of images, displaying one at > a time? Or do you mean actually rotating the image in degrees so that you > could flip it upside down? > > If you're just looking to flip through a group of images, then I'd look no > further than the Cycle plugin from Mike Alsup. It's superb: > > http://www.malsup.com/jquery/cycle > > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On > > Behalf Of Spencer > Sent: Monday, November 26, 2007 11:39 AM > To: jQuery (English) > Subject: [jQuery] Image Rotator Plugin? > > I'm looking for a jQuery based image rotator plugin, does anyone know of one > that is light weight? It really only needs to be able to rotate a group of > images as a set interval with basic fadein and fadeout transitions. If it > could rotate text along with the image that would be great, but right now > not a requirement. > > Thanks in advance.
[jQuery] Re: Drastically reducing jQuery load time
Just use the minified version and send it over the wire gzipped and be done with it. The eval of packed jQuery does take some time, so even if the file is cached it probably will be slightly slower than the cached minified variation. Check this out: http://www.julienlecomte.net/blog/index.php?s=jquery&sbutt=Go Eric On Nov 4, 2:13 pm, "S. Robert James" <[EMAIL PROTECTED]> wrote: > While working on a web app, I thought of this method to drastically > reduce jQuery load time. > > Every link follow causes jQuery to be reloaded again. Now, although > the .js file is stored in the local cache, it still needs to be parsed > and executed, which takes a lot of time. What if, instead, we use a > FRAMESET, keeping jQuery in the master frame, and just changing a > child frame (which takes up the entire screen). This way, jQuery > never needs to be reloaded. > > What does everyone say?
[jQuery] Re: Slickspeed from Mootools
So I got good results, and jQuery has the fastest total time. My totals were: * Prototype 1.6rc1: 1187ms * MooTools 1.2dev-r1159: 570ms * jQuery 1.21: 365ms This was in Safari 2. Eric On Nov 1, 12:25 pm, prit <[EMAIL PROTECTED]> wrote: > I have tried different javascript frameworks and I finally decided to > use jQuery because of the ease of use and all the good plugins > available. > > But recently I noticed a websitehttp://mootools.net/slickspeed/which > compares 3 frameworks including jQuery. I ran the tests on that site > and noticed that they show jQuery as the slowest performer out of the > 3 frameworks (Mootools, Prototype and jQuery). > > Does anybody have comments on this ? > > Thanks, > Prit
[jQuery] Re: New css framework with helper tool ( a website builder made with jquery)
This is done very nicely, the UI is cool and shows what you can do with jQuery. ...althought I don't see myself using it due to the non-semantic nature of the code it produces ;-) Eric On Aug 31, 5:39 am, "Armand Datema" <[EMAIL PROTECTED]> wrote: > Just ran into this one, nice idea but whats cooler, the entire thing > is build in jquery > > http://builder.yaml.de/ > > -- > Armand Datema > CTO SchwingSoft
[jQuery] Re: New Plugin: HoverAccordion
Cool, this could be very useful! I've noticed Apple's menu that behaves this way lately, glad to see someone implement it, and it appears to be a good usable implementation. Eric On Jun 26, 7:34 am, Bernd Matzner <[EMAIL PROTECTED]> wrote: > Hello, > > I'm really excited: My first try at building a jQuery plugin! > > This is another accordion, but in this case, it's designed to open up > by just moving your mouse over an item, just like on > thehttp://www.apple.com/mac/ > website. > > Can be used together with the excellent hoverIntent plugin to avoid > accidentally opening an item. > > See > > http://berndmatzner.de/jquery/hoveraccordion/ > > for instructions and examples. > > Looking forward to your comments, > > Bernd