[jQuery] Re: Superfish mouseover problem in Opera

2007-06-14 Thread Joel Birch
Hi Jaysun, I tried to use your code to work out your problem but there were many issues that made it too difficult to help you. Please could you create a test page and provide us with a url to look at? Also, try and rip out all of the Dreamweaver javascript as rolfsf said and use CSS for

[jQuery] Re: jquery + validation + ajaxForm + tabs - almost working... (interesting problem!)

2007-06-14 Thread Klaus Hartl
slakoz wrote: Dear All, First of all the links to sample pages. First working sample: http://www.torli.pl/valid/index-val.php and (if someone want use this mix): http://www.torli.pl/valid/valid.zip Description (how i want it to work): 1. there are two tabs: tab #1 is enabled, tab #2 id disabl

[jQuery] Re: Superfish mouseover problem in Opera

2007-06-14 Thread rolfsf
Jaysun, If you've got a working url that we could go to, it might make it a little easier. You might want to strip out the dreamweaver rollover script that's attached to the menu - it's creating at least one javascript error, and you don't really need it if you're using Superfish and css... that

[jQuery] Re: Is it possible to show/hide a div with a class one at a time instead of all at once

2007-06-14 Thread bsuttis
Awesome, it works! Thanks Sean, much appreciated. On Jun 14, 6:19 pm, "Sean Catchpole" <[EMAIL PROTECTED]> wrote: > Try this: > $('li.hide-comm-single').click(function(){ > $(this).parents('.comment') > .children().not('ul').hide(); > return false; > > }); > > ~Sean

[jQuery] Re: mouseover/mouseout vs. hover

2007-06-14 Thread Brandon Aaron
$(document).ready is the original and is what happens behind the scenes ... the shortcut is because we don't like typing. :) -- Brandon Aaron On 6/14/07, Charlie Concepcion <[EMAIL PROTECTED]> wrote: Thanks Rafael... Thanks Everyone! It works great, man I'm loving this simple jQuery syntax.

[jQuery] Re: Is it possible to show/hide a div with a class one at a time instead of all at once

2007-06-14 Thread Karl Swedberg
Hi there, Here is the simple answer: make use of the "this" keyword. Here is an example: $('li.hide-comm-single').click(function() { $(this).parents('div.comment').find('div.content').hide(); return false; }); I'm assuming that, as your markup shows, the only other child of div.comment w

[jQuery] Re: Is it possible to show/hide a div with a class one at a time instead of all at once

2007-06-14 Thread Sean Catchpole
Try this: $('li.hide-comm-single').click(function(){ $(this).parents('.comment') .children().not('ul').hide(); return false; }); ~Sean

[jQuery] Is it possible to show/hide a div with a class one at a time instead of all at once

2007-06-14 Thread bsuttis
Sorry for the vague subject, I rewrote it a few times and it still doesn't make much sense, hopefully what I say below does. I'm trying to implement jQuery into my comments to enable users to show/hide them as they read them. My problem occurs that using my current jQuery code, every comment div

[jQuery] jquery + validation + ajaxForm + tabs - almost working... (interesting problem!)

2007-06-14 Thread slakoz
Dear All, First of all the links to sample pages. First working sample: http://www.torli.pl/valid/index-val.php and (if someone want use this mix): http://www.torli.pl/valid/valid.zip Description (how i want it to work): 1. there are two tabs: tab #1 is enabled, tab #2 id disabled. 2. there are

[jQuery] Superfish mouseover problem in Opera

2007-06-14 Thread Jaysun
Hi. I'm a designer that isn't very experienced in coding etc, so please bear with me. I'm having in an issue with the superfish menu. In fact several problems. The main issue is that in Opera (the latest version 9.21) the menu's that drop down don't work when I mouse over them. i.e. their colour

[jQuery] Superfish mouseover problem in Opera

2007-06-14 Thread Jaysun
Hi. I'm a designer that isn't very experienced in coding etc, so please bear with me. I'm having in an issue with the superfish menu. In fact several problems. The main issue is that in Opera (the latest version 9.21) the menu's that drop down don't work when I mouse over them. i.e. their colour

[jQuery] Re: mouseover/mouseout vs. hover

2007-06-14 Thread Charlie Concepcion
Thanks Rafael... Thanks Everyone! It works great, man I'm loving this simple jQuery syntax. One more question though... why use the shorcut version vs. document.ready? I mean if this is the case why'd they even make document.ready? On Jun 14, 5:10 pm, "Rafael Santos" <[EMAIL PROTECTED]> wrote:

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

2007-06-14 Thread slakoz
Thanks! This one works too. regards, sławek

[jQuery] Re: Update Broadband Stats

2007-06-14 Thread Benjamin Sterling
Good find Rey. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: mouseover/mouseout vs. hover

2007-06-14 Thread Karl Swedberg
Hi Charlie, Sorry I'm late to this thread. If you want more info on this, you can check out this entry I posted a while back: http://www.learningjquery.com/2007/02/quick-tip-set-hover-class-for- anything --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com

[jQuery] Update Broadband Stats

2007-06-14 Thread Rey Bango
Some interesting stats for all of those that think that every US household has broadband and is building their sites accordingly: "According to research done by the consultancy firm Point Topic, the US has fallen to 24th place in terms of broadband penetration, with only 53% of households co

[jQuery] Selector Wildcards

2007-06-14 Thread Karl Swedberg
Hi John, I'm re-posting your question because it looks like you may have inadvertently replied to the "encodeURIComponent localized for custom encoding" thread instead of posting it as a new thread. It's easy for these things to get lost if you don't start a new topic rather than replying

[jQuery] AW: [jQuery] Re: different name and id issue?

2007-06-14 Thread Roger Ineichen
Hi Klaus > Betreff: [jQuery] Re: different name and id issue? [...] > This is a known IE bug. Id and the name attribute share the > same namespace in IE giving you the (unexpected) result > you're talking of (getElementById gives you the first > occurence of an element with the given id or na

[jQuery] Re: Request to all developers: Put version number in file name please

2007-06-14 Thread Jörn Zaefferer
Jörn Zaefferer wrote: Modifying the build to add the header to minified files shouldn't be too difficult. Done. -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: different name and id issue?

2007-06-14 Thread Klaus Hartl
Roger Ineichen wrote: Hi all We at the Zope3 dev mailinglist have a question to you genious JQuery developers. We run into a IE 6&7 issue related to DOM element id and name. The following two onclick handler return both Bar as value in IE 6 and 7. Does anybody know why? test

[jQuery] different name and id issue?

2007-06-14 Thread Roger Ineichen
Hi all We at the Zope3 dev mailinglist have a question to you genious JQuery developers. We run into a IE 6&7 issue related to DOM element id and name. The following two onclick handler return both Bar as value in IE 6 and 7. Does anybody know why? test bar (ok) foo (probl

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Andy Matthews
I think that, for any plugin which achieves official status, the jQuery team should have a say in it's development. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Thursday, June 14, 2007 4:38 PM To: jquery-en@googlegroups.com Subject: [jQuery]

[jQuery] jQuery appearing now in books

2007-06-14 Thread Shelane
Go to Amazon and do a search in the book category for jQuery and you will see excerpts that specifically mention jQuery. Very cool.

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Glen Lipka
Some Plugin site examples: https://addons.mozilla.org/en-US/firefox/ (If only we knew someone who works there) http://codex.wordpress.org/Plugins http://www.eclipseplugincentral.com/ http://themes.wordpress.net/ One thing that I notice reading the thread, is this feeling that the jQuery core tea

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Jake McGraw
I won't argue that there are some great plugins out there, I just think if the dev team has to figure out where their finite amount of time should be spent, I say keep it centered on core development and not in implementing a "plugins repo", although if anyone outside of dev would like to take th

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Alexandre Plennevaux
Well, i'm no apple nor cnn, but let me say i've tried prototype and jquery and i 've chosen jquery. With prototype, i couldn't ever figure how to write it correctly, and when i did find, i was WTF-ing at the code, like, "wow, javascript is complicated" . With jquery, i just try things, and, guess

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Alexandre Plennevaux
I feel Matt Kruse is putting the finger on the right spots, but i would not change the whole roadmap: a properly structured, thought-out plugin repository, and probably monitored by members of the jquery team could be just as good a solution. I personally really like the core/plugins structure. B

[jQuery] Re: mouseover/mouseout vs. hover

2007-06-14 Thread Rafael Santos
$(function(){ //shortcut for $(document).ready(){fn} $("#nav > li").hover(function(){ $(this).addClass("over"); }),function(){ $(this).removeClass("over"); }) }); 2007/6/14, Charlie Concepcion <[EMAIL PROTECTED]>: Ok I am new to this so here's my old code: $(document).ready(fu

[jQuery] Re: Bound function on appended image

2007-06-14 Thread Scott Sauyet
Gareth Hughes wrote: http://docs.jquery.com/Tutorials:AJAX_and_Events Many thanks Scott, that's done the trick. I've had to double up on my functions (once inside the document.ready and once outside) but that must be the way my code is structured. Did you read the tutorial all the way t

[jQuery] Re: mouseover/mouseout vs. hover

2007-06-14 Thread Charlie Concepcion
Ok I am new to this so here's my old code: $(document).ready(function(){ $("#nav > li").mouseover(function(){ $(this).addClass("over");}) .mouseout(function(){ $(this).removeClass("over");}); }); I need that in hover version. I'm assuming it's supposed to be much shorter. On Jun

[jQuery] jquery vertical tabs?

2007-06-14 Thread Jack Killpatrick
Hi All, I need to create vertical tabs for a UI. I've done some poking around and based on comments here it looks like there's a way to do it: http://stilbuero.de/2006/05/13/accessible-unobtrusive-javascript-tabs-with-jquery/ "OK, so I’ve got a vertical set of tabs up and running and the in

[jQuery] Re: mouseover/mouseout vs. hover

2007-06-14 Thread spinnach
charlie, (un)fortunately you'll have to do a bit of jquery magic, and i'd suggest using the hover method, where you define two functions, one for when mouse on, on for mouse off, like so: $('div').hover(function(){ //do your mouseover magic, eg: $(this).addClass('hover'); }, function() {

[jQuery] Re: autocomplete advice

2007-06-14 Thread Robert O'Rourke
Jörn Zaefferer wrote: Robert O'Rourke wrote: The main difference was changing the .click event on $input to give the input focus and then added an else statement to it: [...] Sounds great. Let me know about your progress, I'd like to port your changes back into the plugin. Ok, It's co

[jQuery] Re: mouseover/mouseout vs. hover

2007-06-14 Thread Rafael Santos
I think u can use both, hover and mouseover. jQuery uses javascript to treat it. 2007/6/14, Charlie Concepcion <[EMAIL PROTECTED]>: I'm new to jQuery and I have to say I love it! I hate javascript but now I like it cuz of query. Anyways enough of that :) I'm a CSS developer also. I know that

[jQuery] Re: mouseover/mouseout vs. hover

2007-06-14 Thread Jeffrey Kretz
The jQuery hover event is a javascript mouseover/mouseout event. You would do: $('element').hover(mouseOverEvent,mouseOutEvent); One of the really nice things built into the hover event, is it deals with parent/child elements cleanly. If you have a TD that contains a P and an A element, but th

[jQuery] Re: Can I select just one?

2007-06-14 Thread Christopher Jordan
Thanks everyone! Chris Jake McGraw wrote: With some functions, its only the first item which is modified / used like: $("a").attr("href"); Okay, everyone beat me to the punch, if you follow their directions, I think you'll be set. - jake On 6/14/07, Chris Jordan <[EMAIL PROTECTED]

[jQuery] Re: @mike: blockUI fix

2007-06-14 Thread Mike Alsup
Done. On 6/14/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: On the topic of blockUI ... could you change the name of the file to match the folder name: jquery.blockUI.js This will allow you to add a build task to the build.xml so you can quickly provide a min, pack and/or zipped version.

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread AJ
On Jun 14, 4:09 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > Great to hear AJ. Who was the company so we can add it to the list? Unfortunately this was done as a subcontractor and our NDA precludes us from disclosing the client publicly. However, we're so happy with the widget we'll be "unbranding

[jQuery] mouseover/mouseout vs. hover

2007-06-14 Thread Charlie Concepcion
I'm new to jQuery and I have to say I love it! I hate javascript but now I like it cuz of query. Anyways enough of that :) I'm a CSS developer also. I know that the :hover pseudo element doesn't work in IE 6 so I always have to use javascript using mouseover/mouseout events. My question is, in

[jQuery] mouseover/mouseout vs. hover

2007-06-14 Thread Charlie Concepcion
What should I use... I know in CSS :hover element is not supported. is jQuery using the CSS hover element here? I posted this same post earlier... but didn't see it live... trying again..

[jQuery] Re: ANN: CFJS 1.1.6 Released

2007-06-14 Thread Christopher Jordan
thanks guys. I get it now. I can't believe I didn't see that before! :o/ I appreciate it! :o) Chris spinnach wrote: no header here also, it 404's.. dennis. Christopher Jordan wrote: Andy is the header not showing up correctly for you? It appears fine for me. I checked it in FF 2.0.0.4 and

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Tane Piper
On 6/14/07, Glen Lipka <[EMAIL PROTECTED]> wrote: I don't get why Prototype is "fluffy"? It seems harder for me to do anything in prototype. I actually feel like its the opposite. jQuery is friendlier to designers and Prototype is geared to hard core types. I just dont get the superfluous

[jQuery] Re: ANN: CFJS 1.1.6 Released

2007-06-14 Thread spinnach
no header here also, it 404's.. dennis. Christopher Jordan wrote: Andy is the header not showing up correctly for you? It appears fine for me. I checked it in FF 2.0.0.4 and IE6. If it's not showing up for other folks properly, I'd like to know so I can correct it. Thanks! Chris Andy Matth

[jQuery] Re: ANN: CFJS 1.1.6 Released

2007-06-14 Thread Olaf Bosch
Christopher Jordan schrieb: I just checked and I'm using the relative path: You have mod_rewrite then you are deeper The best is you used the absolute path http://cjordan.us/images/custom/BlogTitle.gif For that is my english good enough ;) -- Viele Grüße, Olaf ---

[jQuery] Re: Can I select just one?

2007-06-14 Thread Jake McGraw
With some functions, its only the first item which is modified / used like: $("a").attr("href"); Okay, everyone beat me to the punch, if you follow their directions, I think you'll be set. - jake On 6/14/07, Chris Jordan <[EMAIL PROTECTED]> wrote: Hi folks, I've not really had a need

[jQuery] Re: Can I select just one?

2007-06-14 Thread Josh Nathanson
Do you mean like $("td:first") for example? -- Josh - Original Message - From: "Chris Jordan" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Thursday, June 14, 2007 1:18 PM Subject: [jQuery] Can I select just one? Hi folks, I've not really had a need to do this before, but is

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Glen Lipka
I don't get why Prototype is "fluffy"? It seems harder for me to do anything in prototype. I actually feel like its the opposite. jQuery is friendlier to designers and Prototype is geared to hard core types. And on subject of Plugins... I don't know how "Tabs" is superfluous. I use interface o

[jQuery] Re: Can I select just one?

2007-06-14 Thread Andy Matthews
I believe that it's: $('.shiny:first') -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: Thursday, June 14, 2007 3:18 PM To: jQuery (English) Subject: [jQuery] Can I select just one? Hi folks, I've not really had a need to d

[jQuery] Re: Can I select just one?

2007-06-14 Thread Klaus Hartl
Chris Jordan wrote: Hi folks, I've not really had a need to do this before, but is it possible to tell jQuery that when doing a selection I just want the first one found? I know that I can reference the zeroth element in the array of matches. As it happens, right now I've got a need to just ge

[jQuery] Re: Can I select just one?

2007-06-14 Thread sozzi
You mean like: $("p:first")? have a look at the possible selectors at: http://docs.jquery.com/DOM/Traversing/Selectors Regards

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Andy Matthews
You have a link for that? Sounds awesome! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of AJ Sent: Thursday, June 14, 2007 2:28 PM To: jQuery (English) Subject: [jQuery] Re: CNN and Apple Choose Prototype. Why? > Prototype is nice and fluffy,

[jQuery] Re: ANN: CFJS 1.1.6 Released

2007-06-14 Thread Andy Matthews
Relative paths will be wrong if you're deeplinked into a specific post. I went here: http://cjordan.us/index.cfm/2007/6/14/CFJS-Ver-116-Released and the header shows as broken. It's because you're too deep into the site. This is where the site is looking for the image: http://cjordan.us/index.cfm

[jQuery] Can I select just one?

2007-06-14 Thread Chris Jordan
Hi folks, I've not really had a need to do this before, but is it possible to tell jQuery that when doing a selection I just want the first one found? I know that I can reference the zeroth element in the array of matches. As it happens, right now I've got a need to just get the first occurance

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Rey Bango
Great to hear AJ. Who was the company so we can add it to the list? Rey AJ wrote: Prototype is nice and fluffy, for 'designers' who use macs, and dreamweaver and sit around all day in design meetings coming up with 'great design ideas', drinking skinny lattes JQuery is hardcore, for geeks who

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Joao Pedrosa
Hi, > Maybe the reason you have 4000 lines of javascript is that you're not using > chaining. > > Why would you pick a library, then decide NOT to use one of it's biggest > strengths? First of all, I started developing my library when I started using the ExtJS library. The purpose was to create

[jQuery] Re: how do i wait for the images to be fully downloaded?

2007-06-14 Thread GianCarlo Mingati
http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-multi.html Hi, that's what happens if i put more than one 'instance' of slideviewer into a page. The 'load' trick worked but now i think that despite renato's suggestion (if you look at the plugin the code is wrapped i

[jQuery] Re: mouseout seems to occur while still in div

2007-06-14 Thread wswilson
Hmmm, no luck so far using the target condition but I found a workaround using hover instead of mouseout: $('div.a').hover(function() {},function() { $(this).children('span.b').hide(); }); On Jun 13, 6:20 pm, "Jonathan Sharp" <[EMAIL PROTECTED]> wrote: > (untested) You need to do: > >

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread AJ
> Prototype is nice and fluffy, for 'designers' who use macs, and > dreamweaver and sit around all day in design meetings coming up with > 'great design ideas', drinking skinny lattes > > JQuery is hardcore, for geeks who use linux and Eclipse, who come up > with actual useful sites, rather than j

[jQuery] Re: mouseout seems to occur while still in div

2007-06-14 Thread wswilson
Thanks for the help...I appreciate it. On Jun 13, 6:20 pm, "Jonathan Sharp" <[EMAIL PROTECTED]> wrote: > (untested) You need to do: > > $('div.a').mouseout(function(e) { > if (e.target == this) { > $(this).children('span.b').hide(); > } > > }); > > Cheers, > -js > > On 6/13/07, ws

[jQuery] Re: ANN: CFJS 1.1.6 Released

2007-06-14 Thread Christopher Jordan
I just checked and I'm using the relative path: Andy Matthews wrote: Chris... Your blog header image's path is wrong. Just wanted to let you know. You're probably referencing "images/custom/BlogTitle.gif" everywhere in your code, even though the server has "subfolders" because of R

[jQuery] Re: ANN: CFJS 1.1.6 Released

2007-06-14 Thread Christopher Jordan
Andy is the header not showing up correctly for you? It appears fine for me. I checked it in FF 2.0.0.4 and IE6. If it's not showing up for other folks properly, I'd like to know so I can correct it. Thanks! Chris Andy Matthews wrote: Chris... Your blog header image's path is wrong. Just wa

[jQuery] Re: ANN: CFJS 1.1.6 Released

2007-06-14 Thread Andy Matthews
Chris... Your blog header image's path is wrong. Just wanted to let you know. You're probably referencing "images/custom/BlogTitle.gif" everywhere in your code, even though the server has "subfolders" because of Ray's BlogCFC code. Make sure to change your references to "/images/custom/BlogTitl

[jQuery] ANN: CFJS 1.1.6 Released

2007-06-14 Thread Christopher Jordan
Just wanted to let any interested folks know that CFJS 1.1.6 has been released. As always, the latest version is available from the SVN repository on RIAForge.org. I've also blogged about the changes . Cheers everyone! Chris -- http

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Josh Nathanson
Most jQuery plugins, big exception for Interface, are superfluous IMO. If people took the time to really look into everything you can do with jQuery + JavaScript's native features, they'd see how incredibly easy it is to come up with a home grown solution that does specifically what they need w

[jQuery] Re: using spin button in a scrolling parent

2007-06-14 Thread George
Very good orix, thanks for that. Always good to hear of people using it. It's been some time since I wrote the spinbutton plugin and it could do with an update to deduce the positioning better. Hopefully I'll find a moment to take a look at your code. Do you have a url where I could see your fix

[jQuery] Re: how do i wait for the images to be fully downloaded?

2007-06-14 Thread Renato Formato
GianCarlo Mingati ha scritto: http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html Hi all. It works now, thank you very much, but why couldn't I put only one istance per page? Try yourself if you got the time. I'll work on that too. Grazie! Ciao GianCarl

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Tane Piper
The way I see it, you can use Apple's current advertising campaign to put it into context Prototype vs jQuery Prototype is nice and fluffy, for 'designers' who use macs, and dreamweaver and sit around all day in design meetings coming up with 'great design ideas', drinking skinny lattes JQuery

[jQuery] Re: Masked Input Plugin Beta 2a

2007-06-14 Thread Rafael Santos
Really good plugin... thanks man, ill be using in, and looking forward to the 1.0 release. 2007/6/13, Sean Catchpole <[EMAIL PROTECTED]>: > Please check it out at: http://digitalbush.com/projects/masked-input-plugin/ I totally dig it Josh, keep up the great work. ~Sean -- Rafael Santos

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Rey Bango
Joao, Thanks for the feedback. I am going to ensure that the team reads your comments. What version of jQuery were you using when you had these issues? I know that the selector performance has been improved in v1.1.3 and I know that Brandon has done a ton of work on dimensions. Can you setup

[jQuery] Re: how do i wait for the images to be fully downloaded?

2007-06-14 Thread GianCarlo Mingati
http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html Hi all. It works now, thank you very much, but why couldn't I put only one istance per page? Try yourself if you got the time. I'll work on that too. Grazie! GC On Jun 14, 8:09 pm, Jörn Zaefferer <[EMAI

[jQuery] Selector wildcards

2007-06-14 Thread John Farrar
Is there any way to do selector wildcards. I am trying to create some tag attributes that say start with sosform:required="true" and that is easy to find. My goal though is for when doing "customized finds". Because my goal is to put the customized code into the custom attribute it will serve

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread Ⓙⓐⓚⓔ
this patch is changes ajax, form uses ajax, so it should work! That's what I hope we will know after you test! On 6/14/07, oscar esp <[EMAIL PROTECTED]> wrote: Another questionbefore to test it... I am using form prlugin to send the info as far I undestand if I put this patch in jquery

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Rey Bango
Hi Matt, Great points. Just so you'll know, we're already working on creating a plugin package that will contain up-to-date plugins that handle most common tasks. These plugins will have been evaluated by the team for applicability, maintainability, compatibility with other plugins & perform

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread howa
I agree with you partly. jquery should provide a little more on the architecture design stuffs, such as organzie the plugin into namespace, force need to follow some standards if they want to get approaved (e.g. coding styles, unit testes)...etc but don't forget jquery is so success becoz it is

[jQuery] Re: Bound function on appended image

2007-06-14 Thread Gareth Hughes
Many thanks Scott, that's done the trick. I've had to double up on my functions (once inside the document.ready and once outside) but that must be the way my code is structured. Thanks again. - Original Message - From: "Scott Sauyet" <[EMAIL PROTECTED]> To: Sent: Thursday, June 14, 2

[jQuery] Re: [jQuery][de] German Support Forum? intrested?

2007-06-14 Thread Brian Cherne
I disagree. My advice, cfreak, is to start a [EMAIL PROTECTED] on your own. Perhaps moderate it yourself until it reaches a critical mass and then find someone more interested in taking control. (maybe contact John or one of the team members directly to make it "official") I suspect that folks w

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Karl Swedberg
absolutely agree. Matt, I very much appreciate that you articulated these areas that need improvement. I know that efforts have been underway for an improved plugin repository, but progress has been slower than expected. Hopefully we can redouble our efforts on that end and take into accoun

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread oscar esp
Another questionbefore to test it... I am using form prlugin to send the info as far I undestand if I put this patch in jquery the form plugion will mantain the new charset? On 10 jun, 19:53, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > keep me posted!! You may also need : > > ajaxSetup({contentType:

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Mike Alsup
That's great insight, Matt. Excellent post; thanks for sharing. Mike leaves jQuery's fate up to random developers creating random plugins. Not so good, IMO. Matt Kruse

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Rhapidophyllum
I am new to jQuery, but after trying a couple of plugins that don't work that well, and looking at others that aren't well-documented, I'd agree with Matt that the approach to plugins could be reworked. The perl analogy is a good one--I used to program extensively in Perl but found it usua

[jQuery] Re: how do i wait for the images to be fully downloaded?

2007-06-14 Thread Jörn Zaefferer
[EMAIL PROTECTED] wrote: The image itself will also have a load event if your creating it dynamically: $('').appendTo(document.body).bind("load", function() { ... }); The caveat, though, is that I'm not sure when/if the event gets fired if the image is cached. From the Learning jQuery boo

[jQuery] Re: Autocomplete mustMatch fix - possibly

2007-06-14 Thread Jörn Zaefferer
Robert O'Rourke wrote: Hi there, Assuming that when must match is true you want the dropdown to disappear if something other than a matched value is typed I think this extension to the stopLoading function does the trick: Actually the intention of mustMatch was to provide a select element

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread Ⓙⓐⓚⓔ
$.pair = function(f,v) {return escape(f) + "=" + escape(v)}; is the key, otherwise you would have the standard utf behaviour On 6/14/07, oscar esp <[EMAIL PROTECTED]> wrote: Hi I have been on holidays and I have not time to test it. In order to keep in mind: I need to dowload from your brach

[jQuery] Re: Release: Validation plugin 1.0 final

2007-06-14 Thread Jörn Zaefferer
Glen Lipka wrote: Wow Jörn, I can't believe how much you put into this release! Looks awesome. I just noticed the Marketo examples on the download look a little troublesome. I'll make a flatter, simpler version of that page without all the generated mess and send to you. Thanks Glen. I was t

[jQuery] Re: Release: Validation plugin 1.0 final

2007-06-14 Thread Jörn Zaefferer
Sebastián V. Würtz wrote: I have to say that your plugin is excelent but i can open your website :( http://bassistance.de/jquery-plugins/jquery-plugin-validation/ How about www.bassistance.de/jquery-plugins/jquery-plugin-validation/ ? Can you access the downloads or the demopage? http://jquer

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Matt Kruse [mailto:[EMAIL PROTECTED] > forward. It could end up similar to Perl, where there is a module to > do just about everything, and yet it's impossible for new users to > figure out which modules they should use (there might be 10 to do the > same ta

[jQuery] Re: Request to all developers: Put version number in file name please

2007-06-14 Thread Jörn Zaefferer
Brandon Aaron wrote: Yeah we just need to do that for the min version as well. I prefer to use the min version and gzip ... better results. jQuery is only 11kb with this technique. Back to the original topic ... the plugins directory of the repository also uses ant to build files. These ant

[jQuery] Re: autocomplete advice

2007-06-14 Thread Jörn Zaefferer
Robert O'Rourke wrote: The main difference was changing the .click event on $input to give the input focus and then added an else statement to it: [...] Sounds great. Let me know about your progress, I'd like to port your changes back into the plugin. -- Jörn Zaefferer http://bassistance

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Andy Matthews
That's a great writeup. I'd have to say that it makes a lot of sense. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Kruse Sent: Thursday, June 14, 2007 12:46 PM To: jQuery (English) Subject: [jQuery] Re: CNN and Apple Choose Prototype. Wh

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread oscar esp
Hi I have been on holidays and I have not time to test it. In order to keep in mind: I need to dowload from your brach. I am using jquery 1.2 .. Then If I take the jquery from your brach it is a standar jquery 1.2 + your modifications for enconding? I am worry ... to be sure that are the same ver

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Matt Kruse
On Jun 14, 12:17 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: >1. A plugin repository that is completely coordinated. Like WordPress >Themes or plugins. It needs to have: > ... I still believe that the plugins approach being taken right now is going to put jQuery in jeopardy as the

[jQuery] Submenu not leaving

2007-06-14 Thread sublimenal
Hello, Im using the superfish module and trying to make submenus (not quite dropdown menus) but when you put your mouse on another item it doesnt remove the submenu from the item you were just viewing. Anyone know what could be causing this? Thanks http://pioneer.dlg360.com/Home-1.htm

[jQuery] Re: Bound function on appended image

2007-06-14 Thread Scott Sauyet
Gareth Hughes wrote: Is there a way of writing the functions so they work on items that are appended to the page by jQuery? Another approach perhaps? There's a good tutorial here: http://docs.jquery.com/Tutorials:AJAX_and_Events Cheers, -- Scott

[jQuery] Bound function on appended image

2007-06-14 Thread Gareth Hughes
I have a function bound to an image class. If I insert another copy of the image (with the same class), the bound function doesn't work on it. Very simple example here: http://www.mm-webs.com/sandbox/test.html The alert sign produces an alert box. The green plus sign inserts another set of im

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Glen Lipka
Well stated Rey. These are steps that I believe will help jQuery be adopted by the mainstream audiences. 1. A plugin repository that is completely coordinated. Like WordPress Themes or plugins. It needs to have: 1. Ratings 2. Number of downloads 3. Documentation 4. Examp

[jQuery] Re: Is there documentation available?

2007-06-14 Thread Andy Matthews
Odd... I got that error too. This got me in though: http://jquery.com/api/? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sauyet Sent: Thursday, June 14, 2007 11:33 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Is there docum

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Rey Bango
Hi Joao, I find it interesting as well. Scriptaculous is the "killer app" that makes Prototype even more appealing, and as far as I know, Scriptaculous is the leader in stability and features as far as FX libraries go. :-) Its definitely the most well known effects lib and thats because they'

[jQuery] Re: Is there documentation available?

2007-06-14 Thread Jeffrey Kretz
I get an error on IE7 just now: Access is denied. Error processing resource 'http://www.jquery.com/api'. Note that I can access it just fine with FF. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sauyet Sent: Thursday, June 14, 2007

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Bruce Wang
On 6/15/07, howa <[EMAIL PROTECTED]> wrote: IMHO, jQuery is surely the MOST successful JS library ever as you can see the things happening in this mailing lists. Developers/Users are so friendly and helpful to each others. what a mouthful It is enough for me. yap, agree. JQuery is almost

[jQuery] Re: Is there documentation available?

2007-06-14 Thread Scott Sauyet
John Farrar wrote: The XML page [www.jquery.com/api - SDS] cannot be displayed Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later. Access is denied

  1   2   >