RE: How to do this with CF and JS?

2011-06-08 Thread Rick Faircloth
Ooohhh... I'll have to check that out! Haven't used those tags before! Thanks for the tip, Carl! Rick -Original Message- From: Carl Von Stetten [mailto:vonner.li...@vonner.net] Sent: Wednesday, June 08, 2011 5:00 PM To: cf-talk Subject: Re: How to do this with CF and JS?

Re: How to do this with CF and JS?

2011-06-08 Thread Carl Von Stetten
ly involves server-side variables and > client-side variables, it seems I'll have to turn back to a CFC method > to generate (at least the jQuery play.sound command line) > outside the DOM, then reinsert it. > > Make sense? > > > > -Original Message- > From

RE: How to do this with CF and JS?

2011-06-08 Thread Rick Faircloth
Scott Stewart [mailto:webmas...@sstwebworks.com] > Sent: Wednesday, June 08, 2011 1:17 PM > To: cf-talk > Subject: Re: How to do this with CF and JS? > > > this doesn't work? > >> >> >> >> >> >> >> >> >> >

RE: How to do this with CF and JS?

2011-06-08 Thread Rick Faircloth
Thanks for that, Dan... one step closer... -Original Message- From: Dan Blickensderfer [mailto:d...@blickensderfer.com] Sent: Wednesday, June 08, 2011 2:28 PM To: cf-talk Subject: Re: How to do this with CF and JS? Rick, Is this how you want to source code to look on the page

Re: How to do this with CF and JS?

2011-06-08 Thread Carl Von Stetten
ent: Wednesday, June 08, 2011 1:17 PM > To: cf-talk > Subject: Re: How to do this with CF and JS? > > > this doesn't work? > >> >> >> >> >> >> >> >> >> >> <cfoutput> >>

Re: How to do this with CF and JS?

2011-06-08 Thread Dan Blickensderfer
a.lang.String as a structure with members. The error occurred in E:\inetpub\webroot\html5css3\fadeImages3.cfm: line 20 18 : 19 : 20 : $.sound.play('#myList.name[listPosition]#'); 21 : 22 : -Original Message- From: Drew Nathanson [mailto:d...@technicalsyn

RE: How to do this with CF and JS?

2011-06-08 Thread Rick Faircloth
stPosition]#'); 21 : 22 : -Original Message- From: Drew Nathanson [mailto:d...@technicalsynergy.com] Sent: Wednesday, June 08, 2011 1:45 PM To: cf-talk Subject: Re: How to do this with CF and JS? Rick, Try this: <cfloop list="myL

Re: How to do this with CF and JS?

2011-06-08 Thread Drew Nathanson
Rick, Try this: $.sound.play('#myList.name[listPosition]#'); I believe your creating more than 1 script file maybe causing you issues. This is my humble opinion. Drew

RE: How to do this with CF and JS?

2011-06-08 Thread Rick Faircloth
e JS to be re-initialized with each loop. -Original Message- From: Scott Stewart [mailto:webmas...@sstwebworks.com] Sent: Wednesday, June 08, 2011 1:17 PM To: cf-talk Subject: Re: How to do this with CF and JS? this doesn't work? > > > > > >

RE: How to do this with CF and JS?

2011-06-08 Thread Rick Faircloth
JS back into the DOM with each loop. That works with other types of JS "re-initialization". I was hoping for something simpler. Any other ideas? Rick -Original Message- From: Scott Stewart [mailto:webmas...@sstwebworks.com] Sent: Wednesday, June 08, 2011 1:17 PM To: cf-talk Su

Re: How to do this with CF and JS?

2011-06-08 Thread Scott Stewart
this doesn't work? > > > > > > > > >       > >       $.sound.play('#myList.name[listPosition]#'); >       > >   > >   > > > On Wed, Jun 8, 2011 at 1:08 PM, Rick Faircloth wrote: > > Ok... since this won't work... > > > > > > > >   >

How to do this with CF and JS?

2011-06-08 Thread Rick Faircloth
Ok... since this won't work... $.sound.play('#myList.name[listPosition]#'); ... because the javascript (jQuery) can't be looped inside the CF, how can I loop the jQuery play command and play through the list of mp3's ??? Thanks for any feedback!