Suppose I want to avoid caching of my js files. I did something like that:<br><br>script ! type_ &quot;text/javascript&quot; $ getScripts [my,editJS]<br><br>Where<br><br>my = &quot;document.write(&#39;&lt;script type=\&quot;text/javascript\&quot; src=\&quot;/js/my.js?&#39; + new Date().getTime() + &#39;\&quot; &gt;&lt;\\/script&gt;&#39;);&quot;<br>
booksJS = &quot;document.write(&#39;&lt;script type=\&quot;text/javascript\&quot; src=\&quot;/js/books.js?&#39; + new Date().getTime() + &#39;\&quot; &gt;&lt;\\/script&gt;&#39;);&quot;<br><br>getScripts scripts =preEscapedString $ foldl1 (++) scripts    <br>
<br>Although I load the scripts, it seems I&#39;m not avoid anything at all. What is the better (or right way) to do that (with Happstack and blaze-html)?<br>