[jQuery] Plugin question

2007-06-18 Thread Alexandre Plennevaux
hello! i'm stuck on how to do this: i would like to extend Luke's flash plugin for my jqUploader plugin, yet no matter how i formulate the $(this).flash() call in the plugin the flash object is not created. I don't get any error, and if i try outside my plugin it works. Here is the

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

2007-06-18 Thread Gordon
The problem is caused by the fact that when you start dragging the TR that is being dragged is taken out of its table and wrapped in a div instead. TR elements are only allowed to exist as a subordinate of a table, thead or tbody element, and their behaviour outside of these elements is

[jQuery] Re: Using Sortables with tables

2007-06-18 Thread robgallen
I've got a list of movies in my sortable, and whilst I don't have them numbered, I do have a save button that gets the IDs of each movie in the new order, and then calls an Ajax function to save these. Have a quick look at

[jQuery] superfish problems with ie6

2007-06-18 Thread oscar esp
I have a menu superfish. I have added i6 patch, and works fine. However I have this design: menuOp1 menuOP2 ___ label: comboBox V When I click on menuOP1 the options are displayed (vertically), however the comobox appears over the

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

2007-06-18 Thread Gordon
I had originally written a script called the Jargon buster that does search and replace on the html() of a page to insert links to jargon terms. The code looks like this (cut down to incluse just the parts I am interested in) function JargonBuster (jargonFile) { var self

[jQuery] Re: AJAX get into a persistent variable?

2007-06-18 Thread Wizzud
Use $.getJSON() and get the php program to return JSON-formatted data. eg Javascript... var _mySelects = false; $.getJSON('options.php', {}, function(json){ _mySelects = json.ok ? json.data : false; }); ... if(_mySelects _mySelects.select1){ var _s1 = $('select name='select1'/select');

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

2007-06-18 Thread Marc Jansen
Hi Mike, mike yao schrieb: I try to via ajax calling back xml object and manipulate, but IE6 can't get nodes infomation. Is jquery compatible under IE6? It should be working with IE 6. What exactly are you trying to do? Could you post a small example? -- Marc

[jQuery] Re: unbind ajaxForm

2007-06-18 Thread pezkel
Hello Mike, Thanks for the tip. Worked like a charm. Keep up the good work. I am getting more and more the hang of Jquery. Great stuff!. Pezkel malsup wrote: Pezkel, There is not a built-in way to unbind the form, although I think that's a good idea. The following code should let

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

2007-06-18 Thread Andrew G.
I have the same problem. Even very simple example doesn't work in IE6 For example, I try the following code $.get(test.xml,function(xml){ var text = $(control,xml).text(); alert(text); }); my XML file is as follows: controls controla/control /controls and when I run my code

[jQuery] Re: superfish problems with ie6

2007-06-18 Thread Joel Birch
On 18/06/2007, at 7:01 PM, oscar esp wrote: I have a menu superfish. I have added i6 patch, and works fine. However I have this design: menuOp1 menuOP2 ___ label: comboBox V When I click on menuOP1 the options are displayed

[jQuery] Re: Release: Validation plugin 1.0 final

2007-06-18 Thread Jean
me too =/ On 6/13/07, Sebastián V. Würtz [EMAIL PROTECTED] wrote: I have to say that your plugin is excelent but i can open your website :( http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Duno why Benjamin Sterling escribió: Jörn, On top of this being a great plugin,

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

2007-06-18 Thread GianCarlo Mingati
Good job Nile, thanks! GC On Jun 18, 6:27 am, [EMAIL PROTECTED] [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 with it, print it, tape it, type it, enjoy it. Download /

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

2007-06-18 Thread Byron
hi John, worked like a treat, is there a compressed version available? On Jun 18, 5:29 pm, John Resig [EMAIL PROTECTED] wrote: Byron - You should give jQuery 1.1.3a a try. This was one of the nasty bugs that we were able to resolve in it:http://code.jquery.com/jquery-1.1.3a.js Let me know

[jQuery] Could anyone send me a copy of Catfish Advert Plugin 1.3

2007-06-18 Thread phpletter
Could anyone send me a copy of Catfish Advert Plugin 1.3. its official site is offline now. I am developing another Jquery based Open Source Project, need it ASAP. thanks in advance. Logan Cai http://www.phpletter.com

[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

[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): div ul lia href=somefile.htmlink/a/li ... /ul /div 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

[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: 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): div ul lia href=somefile.htmlink/a/li ... /ul /div When the user clicks on the tab nav, I want to display a loading image in the content area (=the dynamically generated

[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: 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 fasterfat and the slowerthin It´s funny how mootols get an error with div[class|=dialog] and 0ms but jQuery have problems with div:nth-child(2n),

[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: 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: 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

[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

[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] 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

[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

[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] 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

[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 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

[jQuery] Re: ANNOUNCE: Proposal for Site Submissions

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

[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

[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: 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 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: 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: 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

[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 if it's

[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 that

[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): div ul lia

[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] 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

[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

[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: 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

[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:

[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,

[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

[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

[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: Hy,

[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 ? echo {ok:true,state:OUT-DECOMMISSIONED}; ? Do a need to set a special content type before

[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] wrote: I'm

[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 json from

[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 [EMAIL

[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,

[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.

[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

[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 those

[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 there

[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: 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 unquoted as

[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?

[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: 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

[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: 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 the

[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: 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 div or something). This wouldn't be very

[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-8gid=133414vid=630959b=1 It

[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 labelemail/labelinput type=text

[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 such

[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

[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,

[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],

[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

[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 do you

[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 (least

[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. input type=text