I'm curious, usually this is a way I'd call plugin on a page:
<script type="text/javascript" src="plugin.js"></script>
<script>
//apply plugin to elements / call plugin
</script>
but wouldn't it make more sense and perhaps save some lines of code to call plugins like this?
<script type="text/javascript" src="plugin.js">
//apply plugin / call plugin
</script>
Honestly I don't think I have seen this done before, and I am curious why? I'm new to jQuery and JavaScript so don't judge ;)
src?scripttag, which doesn't do anything.