What is the best way to use jquery in different pages of a 100 page website?
Hello;
It seems that the correct way to add scripts is to do this in the header: <script src="myscripts.js"></script>.
What happens if each of my pages need a variety of unrelated specific scripts?
How can I tell the header to add scipt1.js if this is login page, add script333.js if its another page..?
Should I make hundreds of different scripts? Or should I add some scripts in each file?
Thanks