I have a CFform that is dynamically populated by a query but it is written using coldfusion tags. I want to convert it to Javascript and use the <script>tag. What would be the best way to do this? Would this even be possible with Coldfusion?
<h3>Car Names</h3>
<cfquery name="carbrands" >
SELECT *
FROM carcompany
WHERE cartype_id = 6
</cfquery>
<cfform name="mycars" action="?????.cfm">
<cfselect name="carbrandsearch"
query="carbrands"
value="car_name"
display="car_name">
</cfselect>