[jQuery] Re: New Plugin Repository

2007-06-18 Thread probert . dave
Just had a look. Seems really nice, but the one feature I was looking for in a repository was a form of 'show latest plugins'. The 'All Plugins' -> 'Browse by Date' would be the closest here, but it doesn't do anything! (the other Browse By buttons do what they say :) ) Any chance this bit cou

[jQuery] Rollover plugin?

2007-06-18 Thread howard chen
Hello, Anyone know any easy to use and clean image rollover plugin which can replace the DW rollover scripts? I don't like the DW scripts since it make my HTML difficult to read... Thanks.

[jQuery] Re: New Plugin Repository

2007-06-18 Thread Joel Birch
On 19/06/2007, at 4:26 PM, John Resig wrote: **We're requesting that plugin authors post their work to the new plugin repository in the next couple weeks** Check it out at: http://jquery.com/plugins/ Trying to login, I must have done so before but have misplaced the password. The "Have you f

[jQuery] Re: manipulate xml in IE6 isn't compatible?

2007-06-18 Thread Andrew G.
Thank you, Mikeyao. You help me a lot. On Jun 18, 7:32 pm, mikeyao <[EMAIL PROTECTED]> wrote: > I have solved the problem. IE6 has a responseXML bug. So you need to > create Microsoft xml object by ActiveXObject. example: > $.get("test.xml",function(responseText){ > var xmlDocument = new Active

[jQuery] New Plugin Repository

2007-06-18 Thread John Resig
Hi Everyone - One of the great aspects of jQuery is its extensibility, as evidenced by the many excellent plugins that have been developed for it. The jQuery team, and the Web team in particular, have been working hard behind the scenes to put together a repository to showcase these plugins: htt

[jQuery] Re: Reading HTML from XML

2007-06-18 Thread RobG
On Jun 19, 9:46 am, Lovecannon <[EMAIL PROTECTED]> wrote: > I use CodeIgniter and jQuery for my frameworks, and i was using the > AJAX functions and I tried using XML for a return type, and when id > have an error message, it would return a like this format: > >errormsg) response> Put the HTML

[jQuery] Reading HTML from XML

2007-06-18 Thread Lovecannon
I use CodeIgniter and jQuery for my frameworks, and i was using the AJAX functions and I tried using XML for a return type, and when id have an error message, it would return a like this format: >errormsg) And I had to set to read it like this: and the callback for the success is: function proces

[jQuery] Re: How to create an endless animation?

2007-06-18 Thread Karl Swedberg
if you're using 1.1.3a (and maybe 1.1.2?), try using "linear" The default is "swing" --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 18, 2007, at 10:47 PM, Arne-Kolja Bachstein wrote: Thanks both of you, the endless thingy is working now. But there’

[jQuery] Re: How to create an endless animation?

2007-06-18 Thread Arne-Kolja Bachstein
Thanks both of you, the endless thingy is working now. But there’s some other small problem with the animation: I am using animate() which comes with a basic easing effect. Is it possible to disable easing for this function at all or do I have to work in an other way? I did not succeed in di

[jQuery] Re: How do I create object from loading JS in right time?

2007-06-18 Thread Matt Stith
$(document).ready works in external files, as long as jquery is included on the page. On 6/18/07, John Farrar <[EMAIL PROTECTED]> wrote: I need to JS I am loading to create the object instance only after the DOM is loaded. What is the correct command? I want to initialize this from the include

[jQuery] Re: Selector for namespace style attributes help

2007-06-18 Thread John Farrar
I think it is working. Appreciate it! John Karl Rudd wrote: Here's the ticket that has the "enhancement": http://dev.jquery.com/ticket/155 Karl Rudd On 6/16/07, John Farrar <[EMAIL PROTECTED]> wrote: No gurus about today? John Farrar wrote: > I would like to be able to do the type of

[jQuery] How do I create object from loading JS in right time?

2007-06-18 Thread John Farrar
I need to JS I am loading to create the object instance only after the DOM is loaded. What is the correct command? I want to initialize this from the include file rather than from the page where it's used. This is not currently a plug-in, and I may make it one. Right now my goal is listed above he

[jQuery] Re: Selector for namespace style attributes help

2007-06-18 Thread Karl Rudd
Here's the ticket that has the "enhancement": http://dev.jquery.com/ticket/155 Karl Rudd On 6/16/07, John Farrar <[EMAIL PROTECTED]> wrote: No gurus about today? John Farrar wrote: > I would like to be able to do the type of thing they are doing with > SPRY. > > > > 1. How can I pull th

[jQuery] Re: Selector for namespace style attributes help

2007-06-18 Thread Karl Rudd
The official/stable version of jQuery 1.1.2 doesn't support the "name space" (:) operator. I believe there was a fix added and it should be in the current "beta" of 1.1.3a: http://code.jquery.com/jquery-1.1.3a.js On 6/16/07, John Farrar <[EMAIL PROTECTED]> wrote: No gurus about today? Jo

[jQuery] DisableHeader tablesorter

2007-06-18 Thread David
How can disable 3 header ? not one.

[jQuery] Re: How to create an endless animation?

2007-06-18 Thread Ⓙⓐⓚⓔ
in a one liner: (untested) $('#whatever').bind('a', function(){$(this).animate({ /* properties */ }, 200, $(this).trigger('a'))}).trigger('a'); On 6/18/07, Klaus Hartl <[EMAIL PROTECTED]> wrote: Arne-Kolja Bachstein wrote: > Hi there, > > > > well, it's all in the topic: What is the best (le

[jQuery] Re: Shopping Cart Dynamic Price Update

2007-06-18 Thread Chris W. Parker
On Monday, June 18, 2007 3:52 PM cfdvlpr <> said: > Now, the prices are dynamically generated, but only for 1 size of > product. > I'm hardcoding the size of the product where you see the 0. > However, I'm not sure how to take this to the next step and to take > into account the size. By "size"

[jQuery] Re: How to create an endless animation?

2007-06-18 Thread Klaus Hartl
Arne-Kolja Bachstein wrote: Hi there, well, it’s all in the topic: What is the best (least CPU usage is important I think) way to create an endless animation? I know how to generally use effects, but I do not know how to loop an animation. Any hints are welcome… or maybe even links to tut

[jQuery] Re: Shopping Cart Dynamic Price Update

2007-06-18 Thread cfdvlpr
Alright, so I've now got a variable called productPrice that is passed into Javascript with a jsonencode function. function updateQuantity(input){ i = $(input); var qiv = parseInt(i.attr('value')); // && i.attr('value') < ListGetAt(productPrice.DATA['PRICEBREAKS'][1], (in

[jQuery] How to create an endless animation?

2007-06-18 Thread Arne-Kolja Bachstein
Hi there, well, it's all in the topic: What is the best (least CPU usage is important I think) way to create an endless animation? I know how to generally use effects, but I do not know how to loop an animation. Any hints are welcome. or maybe even links to tutorials or something like that, I'm

[jQuery] Re: Cheat Sheet for jQuery v1.1.2 (PDF format) grab here.

2007-06-18 Thread [EMAIL PROTECTED]
RB: Sure 1.1.3 can do. JM: Glad hear they wen to good use, anytime saved in a team project is good. JZ: Sure I tweaked(created pdf) in Adobe Illustrator by hand, copied the list from API website, text layout was not too hard of task, Ill provide the source file for AI for anyone ("open sou

[jQuery] Re: Lame fix but working - google toolbar takes over the div

2007-06-18 Thread Jörn Zaefferer
Aaron Heimlich wrote: This is already dealt with in 1.0 Final, but it's a good tip for people still using older versions. According to Amir that fix didn't work for him. I could never reproduce it, therefore I'm not sure about it... Any reports if one fix or the other works in other setups are

[jQuery] Re: Lame fix but working - google toolbar takes over the div

2007-06-18 Thread Aaron Heimlich
This is already dealt with in 1.0 Final, but it's a good tip for people still using older versions. --Aaron On 6/18/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: hey, in jorn's plugin and in serval more, if you put a div named "email" or "firstname" or whatever its writes ANNOYING message

[jQuery] Lame fix but working - google toolbar takes over the div

2007-06-18 Thread amircx
hey, in jorn's plugin and in serval more, if you put a div named "email" or "firstname" or whatever its writes ANNOYING message such as "Google can fill this field for you" (and i say : no thanks ;)) anyway i slove it with in that way lets say you have email just stick a comment within it: emai

[jQuery] Re: Shopping Cart Dynamic Price Update

2007-06-18 Thread Chris W. Parker
On Monday, June 18, 2007 12:04 PM cfdvlpr <> said: > But instead of hardcoding the price breaks, I want to make that > dynamic. > The price break is a list which I have in a Coldfusion list variable > in my .cfm file where I include the .js file above. Definitely don't hardcode the price breaks.

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Jake McGraw
Crockford talking about his experience with js, somewhere towards the middle he talks about inventing JSON (the language implementation, not the concept) and his discovery of the issue of reserved words in object literals: http://video.yahoo.com/video/play?ei=UTF-8&gid=133414&vid=630959&b=1 It

[jQuery] Re: background-image onload ?

2007-06-18 Thread skyeflye
Hi Liam, Someone else may have a better idea, but I would try one of three things: 1) Pre-load (pre-cache) the BG image before running the code that switches the BG image in the div is executed. You could just have the image tag on the page in a hidden or something). This wouldn't be very seman

[jQuery] Re: problem with animate()...

2007-06-18 Thread Byron
Hi john, That worked great, when can we expect a compressed release? XD Byron

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Mike Alsup
Interesting. That makes sense. Thanks for the info, Jake! Just saw a video on why this is by Douglass Crockford Technically, you can use unquoted labels ala {var1:"value1"}, but JavaScript will have errors when you try to use reserved words like "for" and "switch". Rather than write th

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-18 Thread Mike Alsup
Apparently there is a problem with fadeIn in safari I stumbled upon that too now that I can run Safari on Windows. I had to update my slideshow plugin and change "fadeIn" to "fadeTo". I assume it's not a problem on the mac version but I wanted my code to work on the Windows version too (

[jQuery] Re: Cheat Sheet for jQuery v1.1.2 (PDF format) grab here.

2007-06-18 Thread Jörn Zaefferer
[EMAIL PROTECTED] wrote: when i say "make" = copy and past from api page (jquery.bassistance.de/ api-browser/ ). reformat. etc.. so was not too hard of task. This is a cool example of why it was a good idea to provide the stylesheet as a download, therefore it would be nice if you could re

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread Christopher Jordan
Maybe I'm missing the point. First of all, what do you mean by "dl"? Secondly, and maybe this is being pedantic or something, but why would someone brand new to the list need to know how to post a thread that says, "Hey I found a new site that uses jQuery"? It seems like a pretty basic thing.

[jQuery] Re: Release: Validation plugin 1.0 final

2007-06-18 Thread Jörn Zaefferer
Jean wrote: me too =/ D'oh. Is there any specific error you get? Anything that could help debugging? Is it only the plugin page itself, or also any other page on my site? How about www.bassistance.de/jquery-plugins/jquery-plugin-validation/ ? Can you access the downloads or the demopage? h

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Jake McGraw
Just saw a video on why this is by Douglass Crockford Technically, you can use unquoted labels ala {var1:"value1"}, but JavaScript will have errors when you try to use reserved words like "for" and "switch". Rather than write the JSON standard for labels using: Attribute names can be unquot

[jQuery] Re: rangeValue in Jorn Form Validation Plugin - zip validation

2007-06-18 Thread Jörn Zaefferer
Web Specialist wrote: Man, I love you! ;-) Works!!! Great, I'll add that to "additional-methods.js" :-) And you should modify it slightly: /^90[2-5]\d\{2}-\d{4}$/ Checking for start and end is a must. Whitespace is trimmed anyway. -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-18 Thread Sean Catchpole
On 6/18/07, Shaun Kester <[EMAIL PROTECTED]> wrote: I made a quick post with screenshot for you using Safari on windows. I see the loading image briefly, then the page just stops. No tabs show up. http://www.skfox.com/jquery/idtabs-new-jquery-plugin/ Thanks for the screenshot. Apparently ther

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Brad Perkins
They are still using PHP 4, but do have the PEAR JSON library installed. I plan to use it. -- Brad On Jun 18, 12:24 pm, "Aaron Heimlich" <[EMAIL PROTECTED]> wrote: > This assumes, of course, that you: > > A) Are using PHP 5.2 > B) Have the json extension installed from PECL[1] > > If neither of

[jQuery] Shopping Cart Dynamic Price Update

2007-06-18 Thread cfdvlpr
I'm writing a shopping cart and I'm trying to update the price on the fly. So I have this in my .js file: $(function(){ $('input.quantityInput').keyup(function(){ updateQuantity(this); }); }); And, I'm starting to write this function: function updateQuantity(in

[jQuery] Re: Accessing the elements of this

2007-06-18 Thread John Farrar
You might try this plugin. http://www.pengoworks.com/workshop/jquery/field.plugin.htm That will help you with forms setter and getters. Then read this post... working on a way to get list of attributes myself right now. http://groups.google.com/group/jquery-en/browse_thread/thread/396f2aa009

[jQuery] Re: Accessing the elements of this

2007-06-18 Thread Jean
this??? $(this).attr("name") On 6/15/07, Andrew B <[EMAIL PROTECTED]> wrote: I'm a raw newbie but have not found this particular question answered. I have a series of dynamically generated radios each of which has three possible values Y (yes) N (no) and M (maybe) and want to capture mou

[jQuery] jQuery blog is borked

2007-06-18 Thread Chris W. Parker
Just in case no one is already aware of it, the jQuery blog (http://jquery.com/blog/) is borked.

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Ⓙⓐⓚⓔ
{"strict":true} :) On 6/18/07, Michael Geary <[EMAIL PROTECTED]> wrote: json_encode should also produce valid JSON, which this isn't: {ok:true,state:'OUT-DECOMMISSIONED'} That is a valid JavaScript object literal, so it will work in most cases when the "JSON" code is being loaded by JavaS

[jQuery] Re: Selector for namespace style attributes help

2007-06-18 Thread Jean
I never use spry, but i use dw cs3 =D i dont like ajax frameworks, only jquery \o/ On 6/15/07, John Farrar <[EMAIL PROTECTED]> wrote: No gurus about today? John Farrar wrote: > I would like to be able to do the type of thing they are doing with > SPRY. > > > > 1. How can I pull the spry attr

[jQuery] Attributes Solution for page DOM elements

2007-06-18 Thread John Farrar
Here is the code I created... sosForm2.prototype.getAttributes = function (myForm) { var attributeList = ""; if(myForm.attributes) { myAttributes = myForm.attributes; } else { myAttributes = myForm[0].attributes; } for(var iA

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Aaron Heimlich
This assumes, of course, that you: A) Are using PHP 5.2 B) Have the json extension installed from PECL[1] If neither of those apply to you, then there a bunch of pure PHP packages listed in the PHP section near the bottom of http://www.json.org. [1] pecl.php.net/package/JSON On 6/18/07, Michae

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread John Farrar
Chris, How is a new user going to know to do that on the front side? Your creating a "dl" interface language just to use the list! LOL, now that is a bit crazy. IMO it's not the number of words it's that it takes a good cause in a complicated direction. One of the virtues of jQuery is not be

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Michael Geary
json_encode should also produce valid JSON, which this isn't: {ok:true,state:'OUT-DECOMMISSIONED'} That is a valid JavaScript object literal, so it will work in most cases when the "JSON" code is being loaded by JavaScript, but if you ever need to feed JSON into a strict JSON parser it won

[jQuery] Re: ANN: jQuery Paris Meetup

2007-06-18 Thread John Resig
NOTE: The venue for this event has changed! We're now meeting at the Best Western Bergère Opéra, please change your plans accordingly. Here's the updated information: Best Western Bergère Opéra 32, Rue Bergère Paris, Île-de-France 75009 http://www.google.com/maps?q=32,+Rue+Bergère,+75009+9ème+A

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-18 Thread Shaun Kester
I made a quick post with screenshot for you using Safari on windows. I see the loading image briefly, then the page just stops. No tabs show up. http://www.skfox.com/jquery/idtabs-new-jquery-plugin/ On Jun 17, 7:40 am, "Sean Catchpole" <[EMAIL PROTECTED]> wrote: > On 6/17/07, Robert Wagner <[EMA

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread Christopher Jordan
Also, you can't really get more self explainitory than "SITE SUBMISSION: blah". Well, maybe you could with "SITES THAT USE JQUERY: blah" Chris Rey Bango wrote: Good feedback John. Our primary method of communication at the moment is the mailing list so what I'd like to see is everyone nice

[jQuery] background-image onload ?

2007-06-18 Thread Liam Byrne
Is there a way in jQuery to (1) set the background image of a div (easily done) and then (2) wait for that image to load before (3) fading it back in ? (1) is easily done, but I'm having problems getting (3) to wait for (2) to complete so that the animation is smooth. Hope that makes sense

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Ⓙⓐⓚⓔ
Jake, json_encode is very cool, and it looks like it would take care of everyone's problems... THANKS! On 6/18/07, Jake McGraw <[EMAIL PROTECTED]> wrote: I think Jake nailed it, when using php and json, why not use json_encode? Observe: echo json_encode(array("ok"=>true,"state"=>"OUT-DECOMMI

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Jake McGraw
I think Jake nailed it, when using php and json, why not use json_encode? Observe: echo json_encode(array("ok"=>true,"state"=>"OUT-DECOMMISSIONED")); php-json is native in PHP 5.2 and above, and available as a plugin here: http://aurore.net/projects/php-json/ and will always* produce valid jso

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Brad Perkins
Jake, That fixed it. Thanks! On Jun 18, 11:41 am, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > do you have variables named OUT and DECOMMISSIONED? > > or did you mean 'OUT-DECOMMISSIONED' > > as in > > echo "{ok:true,state:'OUT-DECOMMISSIONED'}"; > > > ?> > > On 6/18/07, Brad Perkins <[EMAIL PROTECTED]>

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Ⓙⓐⓚⓔ
do you have variables named OUT and DECOMMISSIONED? or did you mean 'OUT-DECOMMISSIONED' as in ?> On 6/18/07, Brad Perkins <[EMAIL PROTECTED]> wrote: I'm trying to use getJSON to return some JSON from a PHP page. I can see that the request is returning the expected response with Firebu

[jQuery] getJSON w/ PHP

2007-06-18 Thread Brad Perkins
I'm trying to use getJSON to return some JSON from a PHP page. I can see that the request is returning the expected response with Firebug, but the getJSON callback isn't firing? My PHP is simply Do a need to set a special content type before returning the JSON?

[jQuery] Re: cought in the simle things... NEWBIE PROBLEM

2007-06-18 Thread Jake McGraw
Cool, wasn't aware of that. - jake On 6/18/07, Mike Alsup <[EMAIL PROTECTED]> wrote: The problem is the '#' symbol in the id declaration: id="#kdetails" @jake: animations for the same element are queued so this should work as intended. Mike On 6/18/07, tlob <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: cought in the simle things... NEWBIE PROBLEM

2007-06-18 Thread Mike Alsup
The problem is the '#' symbol in the id declaration: id="#kdetails" @jake: animations for the same element are queued so this should work as intended. Mike On 6/18/07, tlob <[EMAIL PROTECTED]> wrote: Hy, I'm stuck inthe simple things. Sorry for the beginner question: I want to show a di

[jQuery] Re: cought in the simle things... NEWBIE PROBLEM

2007-06-18 Thread Glen Lipka
There is also Brandon's fxQueue http://brandonaaron.net/jquery/plugins/fxqueue/ It executes the stuff you want one at a time. Really small plugin. Glen On 6/18/07, Jake McGraw <[EMAIL PROTECTED]> wrote: Your problem is that each of those functions is fired right after each other, there is n

[jQuery] Re: cought in the simle things... NEWBIE PROBLEM

2007-06-18 Thread Jake McGraw
Your problem is that each of those functions is fired right after each other, there is no pause, so, you start fading in, set opacity (still fading in), start fading out (still fading in). All of this takes place in a matter of milliseconds, so it will look like nothing is happening. Why not try

[jQuery] cought in the simle things... NEWBIE PROBLEM

2007-06-18 Thread tlob
Hy, I'm stuck inthe simple things. Sorry for the beginner question: I want to show a div#kontaktdaten when I click a special link#kdetails [code] $(document).ready( function(){ $("#kdetails").bind("click", function(){$("#kontaktd

[jQuery] NEWS: plainTemplate & phpQuery

2007-06-18 Thread Rey Bango
Ajaxian has a great post about plainTemplate & phpQuery. phpQuery is a port of jQuery to PHP is being used within plainTemplate to help write template processing rules. You can check out the Ajaxian write up here: http://ajaxian.com/archives/plaintemplate-phpquery Direct link: http://wiado

[jQuery] Re: Problem with WebTrends JS + jQuery in IE 6

2007-06-18 Thread Jake McGraw
anyone? On 6/15/07, Jake McGraw <[EMAIL PROTECTED]> wrote: This is all very interesting, maybe there is a bug in jQuery with the ready event for IE6? Because after the ready event fires, keep in mind, the ready event is NOT part of the JS standard and it is entirely up to jQuery to determine w

[jQuery] Re: manipulate xml in IE6 isn't compatible?

2007-06-18 Thread mikeyao
I have solved the problem. IE6 has a responseXML bug. So you need to create Microsoft xml object by ActiveXObject. example: $.get("test.xml",function(responseText){ var xmlDocument = new ActiveXObject("Microsoft.XMLDOM"); xmlDocument.loadXML(responseText); $('control', xmlDocument).text(); }

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread Rey Bango
I hear ya Dave. I think I'd like to make it something more obvious because apart from being able to filter it out, I'd like other mailing list readers to be able to know that a new site has been submitted and take a look at the email. Rey... DaveG wrote: In the spirit of jQ brevity, how a

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread Rey Bango
Yep, that's definitely doable. Rey Priest, James (NIH/NIEHS) [C] wrote: -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Good feedback John. Our primary method of communication at the moment is the mailing list so what I'd like to see is everyone nicely Would it be po

[jQuery] Re: sortable:how to with tables?

2007-06-18 Thread Mark
that`s working indeed. thanx for the code, Rob. 2007/6/18, Andy Matthews <[EMAIL PROTECTED]>: Right... That's what I ended up deciding on. Haven't built it out yet, but that's next on the list. Thanks for the validation Gordon. andy -Original Message- From: jquery-en@googlegroups.c

[jQuery] Re: jQuery Tabs with AJAX and href="javascript:..."

2007-06-18 Thread [EMAIL PROTECTED]
Thank you Klaus! That was exactly the solution I was looking for :). Matthias On 18 Jun., 13:15, Klaus Hartl <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > Hi, > > > I am using the jquery tabs with dynamically generated divs (the AJAX > > variant): > > > > > > > link > > .

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Rey Bango [mailto:[EMAIL PROTECTED] > > Good feedback John. Our primary method of communication at > the moment is the mailing list so what I'd like to see is everyone nicely Would it be possible to put a link or a form on the 'sites using jQuery' page tha

[jQuery] Re: Form Element Collection

2007-06-18 Thread Dan G. Switzer, II
>This works on your demo page. (Using FF and Firebug command line of >course.) > >jQuery('[EMAIL PROTECTED]"text"]').setValue('1234') > >but this doesn't work. > >jQuery('[EMAIL PROTECTED]"text"]').setValue(1234) > >The solution is to make sure the type is string before doing a split. >(Of course

[jQuery] Re: ANNOUNCE: Please Welcome New jQuery Team Member Glen Lipka

2007-06-18 Thread Scott Sauyet
Klaus Hartl wrote: As a member of the welcoming committee, I'm pleased to announce that we have sent you [ ... ] a 5-page, 4-color instructional brochure detailing the secret jQuery Team handshake. Hey, i didn't get that ;-) I had to learn the handshake all alone... As all true members ca

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread DaveG
In the spirit of jQ brevity, how about: Subject: site: http:\\xyz.com ~ ~ Dave On Mon, 18 Jun 2007 09:49:59 -0400, Rey Bango <[EMAIL PROTECTED]> wrote: > > Hey guys, > > I usually take care of site submissions and I do my best to stay on top > of it. I've found that I've missed a couple of

[jQuery] Re: Form Element Collection

2007-06-18 Thread John Farrar
Dan, Will that be added to the core build you have... or should I create another version local to prevent upgrades from creating bugs? John Dan G. Switzer, II wrote: > John, > > >> Found a possible bug. >> >> This works on your demo page. (Using FF and Firebug command line of >> course.) >>

[jQuery] Re: Form Element Collection

2007-06-18 Thread Dan G. Switzer, II
John, >Would it be a good idea to have the setter/getter look at the field type >and if it were an array based field to call the "fieldArray" function >directly? That way everything could run off a common single function. I had a public discussion about this on the list a while back. My original

[jQuery] Re: Form Element Collection

2007-06-18 Thread Dan G. Switzer, II
John, >Found a possible bug. > >This works on your demo page. (Using FF and Firebug command line of >course.) > >jQuery('[EMAIL PROTECTED]"text"]').setValue('1234') > >but this doesn't work. > >jQuery('[EMAIL PROTECTED]"text"]').setValue(1234) Yeah, it currently needs a string. You could probabl

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread Rey Bango
Good feedback John. Our primary method of communication at the moment is the mailing list so what I'd like to see is everyone nicely give a nudge to anyone that doesn't submit a site using the prefix. Eventually, most folks will catch on and we can tackle those that aren't aware on a case-by-

[jQuery] Re: Form Element Collection

2007-06-18 Thread John Farrar
Dan, Would it be a good idea to have the setter/getter look at the field type and if it were an array based field to call the "fieldArray" function directly? That way everything could run off a common single function. John Farrar

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread John Farrar
New users won't know this and posts will get lost and confused over night. Which means we will have to ignore the heading also. Better solution... multiple lists or a forum. (I believe we have forgot the value of Newsgroups and Forums and try to do to much on discussion lists.) John Farrar R

[jQuery] Re: Form Element Collection

2007-06-18 Thread John Farrar
Found a possible bug. This works on your demo page. (Using FF and Firebug command line of course.) jQuery('[EMAIL PROTECTED]"text"]').setValue('1234') but this doesn't work. jQuery('[EMAIL PROTECTED]"text"]').setValue(1234) The solution is to make sure the type is string before doing a split.

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread Sean Catchpole
Will do. =) ~Sean

[jQuery] Re: Form Element Collection

2007-06-18 Thread Dan G. Switzer, II
Hmmm... I just ran the test in my install of IE7 and didn't get any kind of alerts. -Dan _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Farrar Sent: Monday, June 18, 2007 9:49 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Form Element Colle

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread Jake McGraw
Sounds good. - jake On 6/18/07, Rey Bango <[EMAIL PROTECTED]> wrote: Hey guys, I usually take care of site submissions and I do my best to stay on top of it. I've found that I've missed a couple of submissions to the list as they got mixed in with others and I just overlooked it. So I would

[jQuery] Re: Cheat Sheet for jQuery v1.1.2 (PDF format) grab here.

2007-06-18 Thread Jake McGraw
Nilesh: Just printed out 5 copies for my Dev team, this sheet will definitely get them motivated to use jQuery. Thanks! - jake On 6/18/07, Rey Bango <[EMAIL PROTECTED]> wrote: Awesome! Thanks so much Nilesh. We'll need one for v1.1.3 shortly so I hope you're up for building that one as well!

[jQuery] Re: Form Element Collection

2007-06-18 Thread John Farrar
Looks interesting Dan. Note: IE7 is complaining about scripted windows on your set functions. I let it run the script by you might want to know that as far as how you or others implement this technology. It doesn't appear to be an issue with your plug-in but rather the implementation. John Far

[jQuery] Re: problem with animate()...

2007-06-18 Thread John Resig
Not yet - we should have the final version of 1.1.3 released very soon - at which point we'll have all the versions available for use. --John On 6/18/07, Byron <[EMAIL PROTECTED]> wrote: hi John, worked like a treat, is there a compressed version available? On Jun 18, 5:29 pm, "John Resig"

[jQuery] ANNOUNCE: Proposal for Site Submissions

2007-06-18 Thread Rey Bango
Hey guys, I usually take care of site submissions and I do my best to stay on top of it. I've found that I've missed a couple of submissions to the list as they got mixed in with others and I just overlooked it. So I would like to propose a prefix for any site submissions that would allow m

[jQuery] Re: Using Sortables with tables

2007-06-18 Thread Andy Matthews
It doesn't really matter than I'm displaying an "order" value. In fact, having that order value hidden would probably make the script easier to write. It can be assumed that the modules would be in the order in which they're displayed. Thanks for that little tidbit rob. I might use your code if y

[jQuery] Re: sortable:how to with tables?

2007-06-18 Thread Andy Matthews
Right... That's what I ended up deciding on. Haven't built it out yet, but that's next on the list. Thanks for the validation Gordon. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Sent: Monday, June 18, 2007 3:10 AM To: jQuery (

[jQuery] Re: Cheat Sheet for jQuery v1.1.2 (PDF format) grab here.

2007-06-18 Thread Rey Bango
Awesome! Thanks so much Nilesh. We'll need one for v1.1.3 shortly so I hope you're up for building that one as well!! :) Rey [EMAIL PROTECTED] wrote: Hey, long time jquery fan, I got time today to make One page Cheat Sheet (overview list of function in jquery library ) You know what to do

[jQuery] NEWS: New Plugins

2007-06-18 Thread Rey Bango
As I was updating the Sites Using jQuery page, I came across two great plugins which I never saw mentioned on the list: Ajax File Manager: http://www.phpletter.com/Demo/Ajax-File--Manager/ Ajax Image Editor: http://www.phpletter.com/Demo/Preview-of-Ajax-Image-Editor/ Both are very cool plug

[jQuery] Re: Form Element Collection

2007-06-18 Thread Dan G. Switzer, II
John, >Does anyone have a way to pull individual form elements via a common >request simular to how they use $F() in prototypt? I would like to be >able to set/get any form element value via this scope using the >element ID. (Currently select boxes don't work the same as an input >element to my p

[jQuery] Re: Form Element Collection

2007-06-18 Thread Dan G. Switzer, II
>The form plugin has a method called fieldValue which is a getter and >is comparable to $F. Currently the plugin has no complementary setter >method. There's always my getter/setter functions: http://www.pengoworks.com/workshop/jquery/field.plugin.htm -Dan

[jQuery] Re: speeding up search and replace on lots of elements

2007-06-18 Thread Gordon
I have found with experimenting that splitting the document up into larger chunks helps, for example treating a list as a single element instead of processing each li seperately, and also doing the same with tables instead of processing each td and th seperately yields a considerable speed boost (

[jQuery] Re: jQuery Ajax pagination

2007-06-18 Thread Steve Blades
No, I don't have a SQL script for that. I work on MS SQL at the office and MySQL here at the house. The table structure is fairly straightforward by looking at the query. The ID field is an autonumber identity field. I'm going to have to take a deeper look at the link you forwarded. The example I

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-18 Thread Jean
Well, for my intranet projects will better if the selectors are faster even with 100k but have to exists 2 versions, the faster&fat and the slower&thin It´s funny how mootols get an error with div[class|=dialog] and 0ms but jQuery have problems with div:nth-child(2n), div:nth-child(2n+1),div:nth

[jQuery] Re: Plugin question

2007-06-18 Thread Alexandre Plennevaux
Yes, and nothing wrong comes up as "errors". -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: lundi 18 juin 2007 12:15 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Plugin question > Good point is... it sounds like i'm

[jQuery] Re: jQuery Tabs with AJAX and href="javascript:..."

2007-06-18 Thread Klaus Hartl
[EMAIL PROTECTED] wrote: Hi, I am using the jquery tabs with dynamically generated divs (the AJAX variant): link ... When the user clicks on the tab nav, I want to display a loading image in the content area (=the dynamically generated div). I tried to bind an onclick function

[jQuery] Re: Plugin question

2007-06-18 Thread Mike Alsup
Good point is... it sounds like i'm going to learn something again today :) Me too because your code looks fine to me! Did you try stepping through the code with Firebug? Mike

[jQuery] Re: problem with animate()...

2007-06-18 Thread GianCarlo Mingati
Hi Byron, i am not an expert but i had the same issue with my sliderView plugin. http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html I looked at your script and i think that if instead of declaring the imagewidth [var imageSize = 180;] you let jq retrieve the

[jQuery] jQuery Tabs with AJAX and href="javascript:..."

2007-06-18 Thread [EMAIL PROTECTED]
Hi, I am using the jquery tabs with dynamically generated divs (the AJAX variant): link ... When the user clicks on the tab nav, I want to display a loading image in the content area (=the dynamically generated div). I tried to bind an onclick function ("$('tablink').click(...))

  1   2   >