Re: Accordion - How do you?

2009-12-04 Thread Tony Bentley
Okay, you need to explain what you want it to do a little more. The code I gave you starts with one div open and the other closed. I am not sure if spry is going to be necessary with this. Start with just the divs and no spry. Use the same CSS if you want the style to be the same. If you want

RE: Accordion - How do you?

2009-12-04 Thread Jason Durham
HAHA -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: Thursday, December 03, 2009 6:09 PM To: cf-talk Subject: Re: Accordion - How do you? My bad in advance >>what is jquery? http://tinyurl.com/mbteqj G! On Thu, Dec 3, 2009 at 6:53 PM, Kim Hoopin

Re: Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner
Good stuff. Easy to figure out. Thanks for the lead! kim ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-

Re: Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner
Yes, I googled and found it before your info came. :) But thanks. So I implemented the js into the picture and added your code. Aside from the additional paran I added in the onclick - the code is identical and not quite working. First - I need the text to not show initially upon creating t

Re: Accordion - How do you?

2009-12-03 Thread Charlie Griefer
www.jquery.com :) On Thu, Dec 3, 2009 at 3:53 PM, Kim Hoopingarner < k.hoopingar...@e-details.com> wrote: > > what is jquery? > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House

Re: Accordion - How do you?

2009-12-03 Thread Gerald Guido
My bad in advance >>what is jquery? http://tinyurl.com/mbteqj G! On Thu, Dec 3, 2009 at 6:53 PM, Kim Hoopingarner < k.hoopingar...@e-details.com> wrote: > > what is jquery? > > ~| Want to reach the ColdFusion community with

Re: Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner
what is jquery? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328814 Subscript

Re: Accordion - How do you?

2009-12-03 Thread Tony Bentley
get jquery and then use this: function UpDown(el){ $(".open").slideUp(); $(".open").removeClass("open"); $(el).addClass("open"); } then use UpDown and pass in the element you want to open Click here content content with div open by default but will slide up next click

Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner
I have a client that has a different image showing on each content panel of an accordion. They also have a link showing that when clicked needs to expand that same panel with additional text. (It shows Disclaimer info) I set up the accordion. All is well. I have 5 panels with content. I put