Hello,
could we have at least 2 more options for JS performance?
asyncattribute on<script>tag- the ability to call the JS file asynchroneously (see below)
<code class="javascript">var se = document.createElement("script");
se.src = "{$wpminify-url}.js";
document.getElementsByTagName("head")[0].appendChild(se);
Cf. http://www.stevesouders.com/blog/2010/12/06/evolution-of-script-loading/
Thanks :-)