I've been seen some javascript coding enclose with <!-- -->
. Is there any significant having it that way?
Code:
<script type="text/javascript" language="javascript">
<!--
...javascript code here
-->
</script>
Compared to this:
<script type="text/javascript" language="javascript">
...javascript code here
</script>