Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-03-10 Thread Joel Birch
On 11/01/2007, at 7:56 AM, Rey Bango wrote: Please keep sending links as we want to have a nice list of jQuery-powered sites for the jQuery web site. Hi Rey, Here's a small site that uses jQuery to provide a nice hover effect for the gallery items. I also replace a slightly obscured version

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-03-10 Thread Karl Rudd
Cool. There's an error though, Firebug reports: $.bH has no properties http://www.antaeusflowers.com.au/scripts/antaeus.js Line 7 Karl Rudd On 3/10/07, Joel Birch [EMAIL PROTECTED] wrote: On 11/01/2007, at 7:56 AM, Rey Bango wrote: Please keep sending links as we want to have a nice list of

Re: [jQuery] New plugin: ContextMenu

2007-03-10 Thread Howard Jones
Chris Domigan wrote: Hi everyone The first version of my new ContextMenu plugin has been released. You can grab it here: Chris, This is a really nice plugin! One suggestion that springs to mind for it though - the context part of context menu always implied to me that the options are relevant

Re: [jQuery] Accordion - onHide / onShow actions available ?!?!

2007-03-10 Thread Cees (**snow**)
thumblewend wrote: On 10/03/2007, at 5:35 AM, Cees (**snow**) wrote: Especially the .each- there is only 1 match but can the .addClass and .removeClass be chained after the .prev() ?!?!? Yep, you should be able to chain them instead of using the .each() Joel. Confirmed and working

Re: [jQuery] New plugin: ContextMenu

2007-03-10 Thread Chris Domigan
Howard, thanks for the comments. Something like you suggest is already in the works :) Chris ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-03-10 Thread Joel Birch
On 10/03/2007, at 10:23 PM, Joel Birch wrote: On 10/03/2007, at 9:23 PM, Karl Rudd wrote: Cool. There's an error though, Firebug reports: $.bH has no properties http://www.antaeusflowers.com.au/scripts/antaeus.js Line 7 Karl Rudd Hey thanks heaps for catching that. I didn't get the error

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-03-10 Thread Joel Birch
On 10/03/2007, at 9:23 PM, Karl Rudd wrote: Cool. There's an error though, Firebug reports: $.bH has no properties http://www.antaeusflowers.com.au/scripts/antaeus.js Line 7 Karl Rudd Hey thanks heaps for catching that. I didn't get the error you said but I got others. Hopefully its all

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-03-10 Thread amircx
i have some sites but all in development .. ill submit once they will be online Rey Bango-2 wrote: Hey all, I just wanted to let you know that I've been compiling the list of sites and definitely noting all of the ones submitted. Thank you for providing the info. Please keep sending

[jQuery] need help with tabs

2007-03-10 Thread amircx
hey. for some reason i cant make this page to show loading gif/message while i click on tab... i did what you told me and its still not working can any1 take a look? http://www.oranuse.com/myhome/down.php -- View this message in context:

Re: [jQuery] New plugin: ContextMenu

2007-03-10 Thread Howard Jones
Chris Domigan wrote: Hi everyone The first version of my new ContextMenu plugin has been released. You can grab it here: Hi again Chris, One (fairly specific) bug report: for my particular application[*], I use client-side imagemaps with events attached to them to select items on a

[jQuery] Retrieve content from element using AJAX?

2007-03-10 Thread Yansky
Is it possible to retrieve specific content from another page, rather than the whole page when using AJAX? What I'm trying to do is make a greasemonkey script (with jQuery loaded of course) that gets text from another page on a site (same domain) and displays it in a div. This is the node path

Re: [jQuery] interface 1.2 pause() function

2007-03-10 Thread Yansky
I'm just guessing here, but from reading the documentation, you might need to un-chain your animation. http://interface.eyecon.ro/docs/animate e.g. Something like this maybe: $(#msgContainer).DropInUp(500); $(#msgContainer).pause(5000); $(#msgContainer).DropOutUp(250); montare wrote: Based

Re: [jQuery] interface 1.2 pause() function

2007-03-10 Thread Joel Birch
On 10/03/2007, at 11:24 PM, Yansky wrote: I'm just guessing here, but from reading the documentation, you might need to un-chain your animation. http://interface.eyecon.ro/docs/animate e.g. Something like this maybe: $(#msgContainer).DropInUp(500); $(#msgContainer).pause(5000);

[jQuery] Local XML

2007-03-10 Thread Dmitrii 'Mamut' Dimandt
I need to load and process a local XML file from a page displayed locally. However, if XML is loaded through .get, it is passed to the processing function as text, not as a document. How can I ensure that the XML that is loaded gets parsed and presented as DOM? That is, I need to to something

[jQuery] Show hide return

2007-03-10 Thread Bruce
I'm just learning, or trying to. I searched for this and thought the below would work. What I'm trying to do is if a show hide is being used and the dropdown is long, using the hide function leaves the user way down the page and having to scroll back up looking for where they were. I tried name

Re: [jQuery] Local XML

2007-03-10 Thread Francesco Sullo
I suppose that if you write: function handleResponse(data) { var xml = $(data.responseXml) } the xml var is a DOM xml file. But I don't try it. Cheers, -- Francesco Dmitrii 'Mamut' Dimandt ha scritto: I need to load and process a local XML file from a page displayed locally.

[jQuery] Page Preloader

2007-03-10 Thread schnuck
this request is from last year, but however, anyone with some fresh ideas on this? cheers, s cap_nemo wrote: I'm looking for the best way to load scripts, css, and images before anything else happens. Hopefully with some sort of progress bar or percentage indicator. Any ideas on the best

[jQuery] jquery simple star rating plug-in broken?

2007-03-10 Thread Alp Guneysel
Hi, i'm trying to add wil stuckey's jquery simple star rating plug-in to my forms, but i'm confronted with an error. it says: $form.title is not a function in file jquery.rating.js starting line 125: var $container = $(document.createElement('div')).attr({title: $form.title(), class:

Re: [jQuery] jQuery.flash plugin and ExternalInterface

2007-03-10 Thread spinnach
hi, don't know if anyone still remembers this problem, i thought it was an embed/object issues and ovewrote jQuery.fn.flash.transform function to write the object tag for ie and the embed tag for all other browsers, but it still didn't work this way.. it still didn't work that way so in the

Re: [jQuery] Show hide return

2007-03-10 Thread Yansky
When you hide the div, the container/parent element should contract automatically. e.g. http://lazydragon.dreamhosters.com/test.html Bruce-32 wrote: I'm just learning, or trying to. I searched for this and thought the below would work. What I'm trying to do is if a show hide is being

Re: [jQuery] How can I disable a form submit button if there are entry errors?

2007-03-10 Thread Rick Faircloth
Thanks for the tips, Josh... I've been trying to figure out how to incorporate your code suggestions into the mix, but nothing I've tried seems to affect the function. Any clue as to how it should be incorporated? Also... to Jorn... Jorn, do you know how I can disable a submit button while

Re: [jQuery] interface 1.2 pause() function

2007-03-10 Thread Paul
That's exactly what it was, Joel. I sorted it out yesterday after stumbling on a related suggestion in another post. Thanks for following up, though! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joel Birch Sent: Saturday, March 10, 2007 5:55 AM To:

Re: [jQuery] Validation help with Date Selector

2007-03-10 Thread Rick Faircloth
Thanks, Sam! That will be much more flexible than my approach. I've often found that when I first begin to learn coding techniques, that I end up learning the long-hand version first and getting that working, then it's easier to see ways to move to short-hand. I'm learning CSS the same way. I

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-03-10 Thread Rick Faircloth
Just wanted to congratulate you on a very elegant, attractive site, Joel. Keep up the good work! Rick PS - Are you using javascript or something else for your mirror effects on the images or is that done manually? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [jQuery] Show hide return

2007-03-10 Thread Bruce
Umm, thanks for answering! Appreciated. I tried yours: http://www.bkdesign.ca/ee2/index.php/blog/test-show/ Yours works because thats all there is on the page. On the above (I copied yours) ;), it leaves one at the bottom of the page having to scroll back up... Bruce P bkdesign Yansky wrote:

Re: [jQuery] Show hide return

2007-03-10 Thread Yansky
Ah right, I see what you're getting at. Your original idea should have worked fine then - dunno why it didn't work for you. I copied your page and did a quick test. It seems to work ok: http://lazydragon.dreamhosters.com/test.html BTW, if you use the toggle function rather than show/hide, you

Re: [jQuery] Show hide return

2007-03-10 Thread Bruce
Thank you Yansky! The toggle works perfectly. Have no idea why the show/hide function wouldn't go to anchor, but using toggle works great so thats great. Much appreciated! This list is the best. Lookin at scrolltoanchors, looks awesome! Thanks very much! Bruce P bkdesign - Original

[jQuery] Manually loading Chili

2007-03-10 Thread Scott Sauyet
If this is not the right forum for discussing the Chili plug-in, I apologize. (And would love a pointer to the right place.) I'm quite new to JQuery and am trying my first project with it. It involves some syntax highlighting, so I was trying to use Chili. But I can't find a way to trigger

[jQuery] Fastest selector for searching a single table column?

2007-03-10 Thread Daemach
In my ongoing quest to master jQuery I had an itch to write a table filtering mechanism. I'm going for speed and elegance here so I want this to work fast enough to bind to a keyup event without bogging down even on long tables. Using DOM coding if I wanted to search the 3rd column only I would

[jQuery] Adding Currency Validation to Jorn's Validation Plug-In

2007-03-10 Thread Rick Faircloth
Hi, all. I was wondering if anyone knew how to add a currency validation function (US Dollars) to Jorn's Validation plug-in at www.bassistance.de? I've tried adding a method, but I don't know enough about adding a method or about Regex's to be able to get it working. Any clues anyone? Thanks,

Re: [jQuery] Fastest selector for searching a single table column?

2007-03-10 Thread Daemach
OK the cellindex property of the td inside which the text field resided would get me the current column, at least in firefox... Daemach wrote: In my ongoing quest to master jQuery I had an itch to write a table filtering mechanism. I'm going for speed and elegance here so I want this to

Re: [jQuery] Validation help with Date Selector

2007-03-10 Thread Sam Collett
On 10/03/07, Rick Faircloth [EMAIL PROTECTED] wrote: Thanks, Sam! That will be much more flexible than my approach. I've often found that when I first begin to learn coding techniques, that I end up learning the long-hand version first and getting that working, then it's easier to see ways

Re: [jQuery] Validation help with Date Selector

2007-03-10 Thread Rick Faircloth
onInvalid: function(form) { $(form).find([EMAIL PROTECTED]).attr(disabled, disabled); }, onValid: function(form) { $(form).find([EMAIL PROTECTED]).attr(disabled, ); } That looks good to me! Hopefully that will work. I'm using Jorn's plug-in in debug mode, which is supposed to prevent

[jQuery] Why is this error occurring?

2007-03-10 Thread Rick Faircloth
Hi, all. Using Jorn's validation plug-in. Firebug is giving me this error: invalid property id In reference to this line: if(element.attr('id') == Name) (And it also puts this at the end of the line which is not in the script {\n. what is that?) Anyway. is the problem the fact that the id

[jQuery] Interface iFX animate error in IE 6/7

2007-03-10 Thread aedmonds
Hi guys (and Stefan), I'm getting an error when trying to use the animate function in Internet Explorer 6 and 7. The error is Invalid argument. on line 455, char 8. I know it's vague but I can't really debug it in Firebug because it works fine in FireFox. Any pointers? I've tried Interface 1.2

Re: [jQuery] Why is this error occurring?

2007-03-10 Thread Rick Faircloth
D'oh! I left out a line in the code... sigh ... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rick Faircloth Sent: Saturday, March 10, 2007 9:19 PM To: 'jQuery Discussion.' Subject: [jQuery] Why is this error occurring? Hi, all. Using Jorn's

Re: [jQuery] Interface iFX animate error in IE 6/7

2007-03-10 Thread Ⓙⓐⓚⓔ
my favorite answer for works in ff, but not ie is the trailing comma problem that works in ff but not ie. {a:1,b:2,} works in ff only. drop the trailing commas! On 3/10/07, aedmonds [EMAIL PROTECTED] wrote: Hi guys (and Stefan), I'm getting an error when trying to use the animate function in

[jQuery] jQuery at SXSW?

2007-03-10 Thread Luke Lutman
Are there any other jQuery folks at SXSW this weekend? Apparently John Resig was at the Web Vector graphics panel this afternoon, but I missed him. Anyone interested in grabbing a beer in Austin to toast jQuery? :-) Maybe during the lunch break on Sunday... Rawk! Luke

Re: [jQuery] Interface iFX animate error in IE 6/7

2007-03-10 Thread Yansky
You could use Firebug Lite to debug it in IE. http://www.getfirebug.com/lite.html aedmonds wrote: Hi guys (and Stefan), I'm getting an error when trying to use the animate function in Internet Explorer 6 and 7. The error is Invalid argument. on line 455, char 8. I know it's vague but

Re: [jQuery] Local XML

2007-03-10 Thread Benjamin Sterling
I would use the $.ajax function and set the dateType to xml. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery.flash plugin and ExternalInterface

2007-03-10 Thread Benjamin Sterling
Spinnach, I can't answer your question, but thanks for the fix info. I am actually in the process of converting a project I did a while a go over to jquery and there is alot of flash/javascript communication and I am sure I would have been having the same issue. -- Benjamin Sterling

Re: [jQuery] jQuery at SXSW?

2007-03-10 Thread John Resig
Absolutely. Let's try for Monday, I'll make a post to the jQuery blog and see if we can drum up some more people. I already talked with a bunch today, so I know that there's more out there! Looking forward to seeing everyone! --John On 3/10/07, Luke Lutman [EMAIL PROTECTED] wrote: Are there

Re: [jQuery] jQuery at SXSW?

2007-03-10 Thread Joel Birch
Sounds great. I'll be there in spirit - have a beer for me :) Joel Birch. On 11/03/2007, at 5:30 PM, John Resig wrote: Absolutely. Let's try for Monday, I'll make a post to the jQuery blog and see if we can drum up some more people. I already talked with a bunch today, so I know that

Re: [jQuery] Adding Currency Validation to Jorn's Validation Plug-In

2007-03-10 Thread Daemach
/cfide/scripts/cfforms.js might give you some ideas. Specifically function _CF_checknumber(object_value, required). Rick Faircloth wrote: Hi, all. I was wondering if anyone knew how to add a currency validation function (US Dollars) to Jorn's Validation plug-in at www.bassistance.de?