Re: [jQuery] NOTICE: Moving to Google Groups

2007-03-21 Thread Priest, James \(NIH/NIEHS\) [C]
FYI - If you want to subscribe without signing up with a Google/Gmail account - you can usually send an email to: [EMAIL PROTECTED] So: [EMAIL PROTECTED] *should* work once it's unlocked. I use that to subscribe to all my work related groups using my work email. ([EMAIL PROTECTED] works as

Re: [jQuery] NEW Plug-in: cfjs (ColdFusionJavaScript)

2007-03-19 Thread Priest, James \(NIH/NIEHS\) [C]
Christopher - thanks so much for the cfjs examples I'm still a jQuery newbie - but I'll keep this handy as a reference :) Jim -Original Message- From: Christopher Jordan [mailto:[EMAIL PROTECTED] Here are some examples of how to use the plug-in:

[jQuery] Interface highlight alternative?

2007-03-15 Thread Priest, James \(NIH/NIEHS\) [C]
Currently the highlight effect in Interface doesn't work well with IE... I've submitted a bug but in the meantime - does anyone know of any alternatives? I'm getting ready to release a site and need to come up with a fix or alternative for this before I can wrap it up. I'm just using it to

Re: [jQuery] Calling all CF'ers... et al...

2007-03-14 Thread Priest, James \(NIH/NIEHS\) [C]
] On Behalf Of Priest, James (NIH/NIEHS) [C] Sent: Tuesday, March 13, 2007 8:52 AM To: jQuery Discussion. Subject: Re: [jQuery] Calling all CF'ers... et al... Completely off topic but I rode into work today as well (motorcyclist)! A bit chilly this AM (40) but supposed to be in the low 80's

Re: [jQuery] Calling all CF'ers... et al...

2007-03-13 Thread Priest, James \(NIH/NIEHS\) [C]
Completely off topic but I rode into work today as well (motorcyclist)! A bit chilly this AM (40) but supposed to be in the low 80's! Might have to leave early :) On a more CF related note - are you using any kind of framework with this validation technique? Just curious... I'm working on my

Re: [jQuery] NEW Plug-in: cfjs (ColdFusionJavaScript)

2007-03-12 Thread Priest, James \(NIH/NIEHS\) [C]
I've just published a new plug-in that adds 42 handy ColdFusion functions to the jQuery object. The methods are designed to behave like their ColdFusion counterparts. This looks neat but could you provide some examples for us jQuery newbies :) Thanks! Jim

Re: [jQuery] NEW Plug-in: cfjs (ColdFusionJavaScript)

2007-03-12 Thread Priest, James \(NIH/NIEHS\) [C]
-Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, March 12, 2007 9:25 AM To: 'jQuery Discussion.' Subject: Re: [jQuery] NEW Plug-in: cfjs (ColdFusionJavaScript) You can look up any of those functions here: http://www.cfquickdocs.com/ Oh I'm familiar

Re: [jQuery] NEW Plug-in: cfjs (ColdFusionJavaScript)

2007-03-12 Thread Priest, James \(NIH/NIEHS\) [C]
-Original Message- From: Christopher Jordan [mailto:[EMAIL PROTECTED] I'm kinda in crisis mode at work right now, but I've got a response in the works for how to use the functions with jQuery. I'll be posting it as soon as I can. Sweet! No rush - just curious :) Jim

Re: [jQuery] Feedback needed on when to use Edit In Place

2007-03-08 Thread Priest, James \(NIH/NIEHS\) [C]
-Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] I've been thinking about the best time to use an Edit in Place like this one (http://www.dyve.net/jquery/?editable). Its a very cool technique but I'm not quite sure when I would use it or how I would let a user know

[jQuery] Bug in interface highlight effect in IE7

2007-03-01 Thread Priest, James \(NIH/NIEHS\) [C]
I posted yesterday about an issue I was having with the highlight effect (from interface) firing twice... So after looking at my code again this AM - I went to the Interface site itself (http://interface.eyecon.ro/demos/ifx.html) and the highlight effect appears broken there as well. Works fine

[jQuery] IE how I love thee - effects happening twice

2007-02-28 Thread Priest, James \(NIH/NIEHS\) [C]
OK - I finally got around to looking at things in IE (everything works great in FF) I'm using the fade (highlight) effect from the interface library and what happens is when the fade comes in - it fires twice. My script is about as simple as you can get: script type=text/javascript

[jQuery] jQuery + ColdFusion - auto complete examples?

2007-02-26 Thread Priest, James \(NIH/NIEHS\) [C]
I'm working on an administration tool and I'd like to use jQuery to populate a user field - IE the user would type in a few letters of the last name and have it find the matching names... I know there are lots of ColdFusion folks on the list - I'm looking for some examples :) I've used jQuery

Re: [jQuery] jQuery + ColdFusion - auto complete examples?

2007-02-26 Thread Priest, James \(NIH/NIEHS\) [C]
Paul Rey, Thanks for the links Looks like a good starting point!! I'm sure I'll have questions :) I'm really enjoying jQuery - used it quite a bit in my current application - everyone I've shown it too has been impressed! I've been impressed with how easy it's been to implement everything!

Re: [jQuery] Best way to do AJAX... CF or jQuery?

2007-02-23 Thread Priest, James \(NIH/NIEHS\) [C]
-Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] the new AjaxCFC for jQuery. I had dinner with Rob Gonda last night and put the pressure on him to get it out the door. Yeah - hurry up :) I'm getting ready to work on my first jQuery/AjaxCFC app - but I won't be able

[jQuery] dynamic id's for show/hide toggle?

2007-01-30 Thread Priest, James \(NIH/NIEHS\) [C]
I'm just getting started with jquery so bear with me :) I'm working on displaying a dynamic list generated with ColdFusion. I found the slicker show/hide tutorial and have that working - but need to show/hide elements on each row of my list. Right now it works - but when I click my show/hide

Re: [jQuery] dynamic id's for show/hide toggle?

2007-01-30 Thread Priest, James \(NIH/NIEHS\) [C]
a little confused about what you are needing. Could you show an example of what is currently up? That would also show the structure of your code. You might just be able to use selectors instead of IDs to find the elements you want to show/hide. -- Brandon Aaron On 1/30/07, Priest, James (NIH

Re: [jQuery] dynamic id's for show/hide toggle?

2007-01-30 Thread Priest, James \(NIH/NIEHS\) [C]
Think I got this working - I found this: http://host.sonspring.com/portlets/ And it uses something like: $(this).parent().next().toggle(); Which seems to work in my initial testing! jquery rocks! Jim -Original Message- From: Priest, James (NIH/NIEHS) [C] Sent: Tuesday, January

Re: [jQuery] dynamic id's for show/hide toggle?

2007-01-30 Thread Priest, James \(NIH/NIEHS\) [C]
Brandon - thanks much!! That looks similar to the solution I just posted. I'll check out the docs and read up on these methods - I didn't know where to begin looking! :) Jim -Original Message- From: Brandon Aaron [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 30, 2007 2:54 PM