What exactly do you mean by processed? Do you mean outputted to the browser? Wouldn't the code you show end up being before the doctype declaration of an html page?
On Thu, Sep 15, 2011 at 11:21 AM, Rick Faircloth <[email protected]>wrote: > > <!--- [ js version of cf variables ] ---> > > <cfset js_sitename = application.sitename /> > <cfset js_website = application.website /> > <cfset js_site_manager_dsn = application.site_manager_dsn /> > <cfset js_client_dsn = application.client_dsn /> > > <cfoutput> > > <script type="text/javascript"> > > var js_sitename = '#js_sitename#'; > var js_website = '#js_website#'; > var js_site_manager_dsn = '#js_site_manager_dsn#'; > var js_client_dsn = '#js_client_dsn#'; > > </script> > > </cfoutput> > > > It seems that no matter how I try to do it, either putting js directly > into an application.cfc or either using a cfinclude in an > onRequest function, the js can't be processed along with the other > code in the application.cfc. > > I'm trying to locate all variables for a site in one place (part of > an MSOC design. > > Rick > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347484 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

