I have some code specific to sorting tables. Since the code is common in most pages I want to make a JS file which will have the code and all the pages using it can referen
If you want to include jQuery code from another JS file, this should do the trick:
I had the following in my HTML file:
I created a separate my_jquery.js file with the following:
$(document).ready(function() { $('a').click(function(event) { event.preventDefault(); $(this).hide("slow"); }); });