ok let's say I have these two links
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js"></script>
I'm using these as my javascript sources
and I created another file called
<script src="testing.js"></script>
but in my html I want to show the script src="testing.js" I am able to somehow put the first two links into the testing.js file?
so in my html it'll only show
<script src="testing.js"></script>
but actually it's running three scripts...