Trying to clear my HTML code, is it correct if in my web page I declare many blocks of <script>
.
Like this:
<script type="text/javascript">
...
...
</script>
<script type="text/javascript">
...
...
</script>
<script type="text/javascript">
...
...
</script>
I mean, I do this in order to group jquery functions and allow to declare variables inside each <script>
block that will not affect other <script>
blocks.