import jquery into js code example
Example 1: javascript import jquery
//add this line somewhere in the html
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
Example 2: jquery import js file
$.getScript('ajax/test.js', function() {
alert('Load was performed.');
});