s. isaac dealey wrote: > Not with a default install... You can do that however if you customize > your webserver settings so that .js files are parsed by CF. For a long > time I'd considered creating my own site using .ike files. I never have > though. ;)
You are also not required to name your linked JavaScript files with the '.js' extension. There is nothing preventing one from doing something like. <script src="myJavaScript.cfm"></script>. And then put your CFML built JavaScript code in the "myJavaScript.cfm" file. This will most likely confuse the heck out of ones IDE editors so that they can not properly color code or provide relevant hints and auto-completes for ones JavaScript code. You will also probably want to add some relevant headers so that the browser properly caches the downloaded file as desired according to ones goals. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316880 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

