Quote:
Originally Posted by magnus
Excellent! This fixed the spacing, plus increased compression. Thanks, princeton!
|
To implement this on your site you should remove all comments found within javascripts embedded in your templates. If you do not remove ... you will receive errors in pages with javascript embedded. For example, wywsiwyg editor will not function as it should.
To do this go into your ADMIN PANEL and do a search and replace for
Search for text:
<script type="text/javascript">
<!--
Replace with Text:
<script type="text/javascript">
Search for text:
//-->
</script>
Replace with:
</script>
You can also do this for <style> but it is not necessary as <style> will work when compressed.
If you think the comments are necessary think again ...
Comments are used to hide code from version 1 and 2 browsers. How many users do you think will visit your site with a 1 or 2 browser? And, if so, the site will not work as it should because they will not be able to interpret the javascript.
A condtional statement checking for browser version should be used to render or not render javascript. Why send javascript bytes that will not be utilized by browser?