Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 reference it from there.

Problem is: How do I add jQuery, and table sorter plugin into that .js file?

I tried something like this:

document.writeln('<script src="/javascripts/jquery.js" type="text/javascript"></script>');
document.writeln('<script type="text/javascript" src="/javascripts/jquery.tablesorter.js"></script>');

but this seems to not work.

What is the best way to do this?

share|improve this question
I'm just going to second what a few others have said in their answers. This is not really a good idea. If you want to control which files are included in one place then use a common file on your server to write the scripts tags (e.g. scripts.php would generate script tags for common js files). – Prestaul Jul 17 '09 at 3:04
1  
merge tablesorter and your code. and use server side logic to include when you need it. – galambalazs Jun 30 '10 at 10:16

10 Answers

From what I understood from the question.. you have a jquery code but you want it in a different .js file. I apologize if thats not the case. But if thats the case then here is what I did.

I had the following in my html file:

  <script src="jquery-1.6.1.js"></script>
  <script src="my_jquery.js"></script>

I created a seprate my_jquery.js file and the contents are:

$(document).ready(function() {
  $('a').click(function(event) {
    event.preventDefault();
    $(this).hide("slow");
  });
});

And this is working very fine. Hope I got the question correctly !! cheers.

share|improve this answer
4  
So what, it's still a good answer, and it might help someone else looking for how to do it. Welcome to stackoverflow, R-The_Master! – Timothy Groote Jun 29 '11 at 9:11
4  
@genesis φ This is currently the top Google result for jquery include js and has 13k views lol. – Lauri Ranta Sep 24 '11 at 12:09
1  
Damn straight! certainly helped me out :P. Awesome! – blissfreak Nov 23 '11 at 5:14
3  
Helped me out... 3 years later :) – tushar747 May 20 '12 at 7:55
2  
I just want to point out: The order that you include your js files is important. – KevinO Aug 15 '12 at 19:36
show 2 more comments

If anyone is looking for this, here is a solution with jquery.

http://api.jquery.com/jQuery.getScript/

share|improve this answer
2  
this will work for the OP adding the tablesort plugin but it won't solve getting jquery, which is part of the OP's problem – Eonasdan Oct 4 '12 at 15:32
+1 It is a useful suggestion for readers who want to think beyond the OP's specific case and think more generally about how to reference many plugins efficiently in their JavaScript projects. – Martin Capodici Jan 17 at 1:36

Here is the solution, that I adopted as a combination of some proposed solutions in some other forums.

This way you can reference both css files and other js files in one js file, thus making change next time only in a single place. Please let me know if you have any concerns on it.

I have done following:

  1. I have created a js with name jQueryIncluder.js
  2. declared and executed following code in this file

    function getVirtualDirectory() {
      var vDir = document.location.pathname.split('/');
      return '/' + vDir[1] + '/';
    }
    
    function include_jQueryFilesToPage() {
      var siteAddress = location.protocol + '//' + document.location.hostname + getVirtualDirectory(); 
      var jqCSSFilePath =  siteAddress + 'includes/jQueryCSS/ehrgreen-theme/jquery-ui-1.8.2.custom.css';
      var jqCoreFilePath = siteAddress + 'includes/jquery-1.4.1.min.js';
      var jqUIFilePath =   siteAddress + 'includes/jquery-ui-1.8.2.custom.min.js';
      var head  = document.getElementsByTagName('head')[0]; 
    
      // jQuery CSS jnclude
      var jqCSS = 'cssIDJQ';  // you could encode the css path itself to generate id.
      if (!document.getElementById(jqCSS)) { 
        var link  = document.createElement('link'); 
        link.id  = jqCSS; 
        link.rel  = 'stylesheet'; 
        link.type = 'text/css'; 
        link.href = jqCSSFilePath; 
        link.media = 'all'; 
        head.appendChild(link); 
      } 
    
      // Core jQuery include
      var jqc = "coreFileRefIDJQ";  
      if (!document.getElementById(jqc)) 
        document.write('<scr' + 'ipt type="text/javascript" id="' + jqc + '" src="' + jqCoreFilePath + '"></scr' + 'ipt>');
    
      // jQueryUI include
      var jqUI = "uiFileRefIDJQ";  
      if (!document.getElementById(jqUI)) 
        document.write('<scr' + 'ipt type="text/javascript" id="' + jqUI + '" src="' + jqUIFilePath + '"></scr' + 'ipt>');
    }
    
    include_jQueryFilesToPage();
    
  3. I referenced the above jQueryIncluder.js file in another js or xsl file of my .Net project as following:

    <script type="text/javascript" src="~/includes/jQueryIncluder.js"></script>
    

I hope my effort is appreciated.

Thanks

share|improve this answer

The problem is you're using </script> within the script, which is ending the script tag. Try this:

document.writeln('<script src="/javascripts/jquery.js" type="text/javascript"></sc'+'ript>');
document.writeln('<script type="text/javascript" src="/javascripts/jquery.tablesorter.js"></sc'+'ript>');
share|improve this answer

If you frequently want to update your jquery file link to a new version file, across your site on many pages, at one go..

Create a javascript file (.js) and put in the below code, and map this javascript file to all the pages (instead of mapping jquery file directly on the page), so when the jquery file link is updated on this javascript file it will reflect across the site.

The below code is tested and it works good!

document.write('<');
document.write('script ');
document.write('src="');
//next line is the path to jquery file
document.write('/javascripts/jquery-1.4.1.js');
document.write('" type="text/javascript"></');
document.write('script');
document.write('>');
share|improve this answer

Theres a plugin for jquery where you can just include the files you need into some other js file, here is the link for it http://tobiasz123.wordpress.com/2007/08/01/include-script-inclusion-jquery-plugin/.

Also this document.write line will write the script tags in the html not in your js file.

So I hope this could help you out, a little with your problem

share|improve this answer
var script = document.createElement('script');
script.src = 'http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js';
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
share|improve this answer
2  
I would replace http:// with // for a relative protocol. Assuming that works with the src property. – Der Flatulator Oct 30 '12 at 4:20

just copy the code from the two files into your file at the top.

or use something like this http://code.google.com/p/minify/ to combine your files dynamically.

Josh

share|improve this answer

If document.write('<\script ...') isn't working, try document.createElement('script')...

Other than that, you should be worried about the type of website you're making - do you really think its a good idea to include .js files from .js files?

share|improve this answer

Why are you using Javascript to write the script tags? Simply add the script tags to your head section. So your document will look something like this:

<html>
  <head>
    <!-- Whatever you want here -->
    <script src="/javascripts/jquery.js" type="text/javascript"></script>
    <script src="/javascripts/jquery.tablesorter.js" type="text/javascript"></script>
  </head>
  <body>
    The contents of the page.
  </body>
</html>
share|improve this answer
I am talking about JS files. how to add jQuery reference to a JS file – Josh Jul 16 '09 at 21:34
Jash, you can't do it. Script files can't be referenced in other script files. – Canavar Jul 16 '09 at 21:39
1  
Yes they can, Canavar. AS far as the browser is concerned, it doesn't matter whether you're adding script tags in the HTML or in a script itself, because it interprets the result the same. – Salty Jul 16 '09 at 21:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.