One must always remember that server side processing (CF) and client side processing (JS) are different and never the twain shall meet.
Ok, ok, yes there are ways to mix the two, but not the way you are talking about. Once the page and all the data has been sent to the client, using CFML is not going to do much good, the Cold Fusion Application server is been there, done that with that page an is on to the next request. What you probably want to do, but this is not the only way to skin this particular piece of code, is to pass the CFML array into the JS creating a JS array out of it. I've done this several time and usually just use the straight forward <CFWDDX...> tag, which has a built in parameter value "cfml2js" to do just this in one line I usually just put this in the top of my JS code <script type="text/javascript"....> <cfwddx action="cfml2js" input="#aCFArray#" topLevelVariable="aJSVar"> // other JS code that can now reference the JS array "aJSVar" </script> -------------- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA "C code. C code run. Run code run. Please!" - Cynthia Dunning Confidentiality Notice: This message including any attachments is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender and delete any copies of this message. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Special thanks to the CF Community Suite Silver Sponsor - New Atlanta http://www.newatlanta.com Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186704 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

