Is there a method that allows me to load jQuery only one time across multiple pages? I am loading external pages inside a div.
$("#home").click(function(e) {
e.preventDefault();$("#content").html(ajax_load).load("page.html");
});
The pages I am loading require Jquery. Instead of calling jQuery eg: (<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
) on each of these external pages can I call the already loaded version or do I have to call Jquery again and again?
I ask this because am I not repeating the constant loading of jquery libary on each external page and does this not slow down the load of the external pages?