We have some ColdFusion apps that use the cfhtmlhead tag to add some scripts and random stylesheet link tags... problem is I can't change the files that do this, and my content has to execute along with the code that has the cfhtmlhead calls. Again, not much I can do to get around this.
The only thing I can think of that almost works is to do a <cfcontent reset="true"> which takes care of everything but the lingering <script>...</script> and <link ... /> tags that were added using <cfhtmlhead />
I just need to know if there is a way to reset or cancel anything that has been added via cfhtmlhead to output some text content that can't have script and link tags or any thing else littering the output.
From what I have tried/found, it doesn't seem possible. Can someone confirm if this is the case? Am I missing some simple or even hackish solution somewhere?