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'm building a normal webpage which requires me to load about five CSS files and ten Javascript files.

  • When loading them separately in the HTML page, my webpage loads fine.
  • Now for production, I concatenated all the Javascript into a single file, in the order needed, and all the CSS into another file. But when I try to run the web page with the concatenated files it throws an error saying:

    Uncaught TypeError: undefined is not a function

On the line where jquery.min.js is being loaded in the concatenated Javascript file.

What can I do to mitigate this? I want to concatenate all files and minify them for production. Please help.


EDIT: I merged the Javascript and CSS in the order they were when they were being loaded individually and were working fine.

share|improve this question
1  
how can we know what is undefined if you got no code to show? – Joseph the Dreamer May 3 '12 at 10:51
the undefined is coming in the jquery-1.6.1.min.js that im loading. maybe jquery is not being loaded properly or something? – ghostCoder May 3 '12 at 10:53
accept the high ranking answer maybe ? – Allisone Mar 11 at 0:36

4 Answers

up vote 35 down vote accepted

Assuming this problem still has not be resolved, a lot of individual files don't end their code with a semicolon. Most jQuery scripts end with (jQuery) and you need to have (jQuery);.

As separate files the script will load just fine but as one individual file you need the semicolons.

share|improve this answer
3  
+1. When concatenating JavaScript code, you always should join them on semicolons. Too many of them are still valid, while to less lead to errors. – Bergi Jun 4 '12 at 15:47
1  
That's incredibly tricky to debug. Thanks for a really effective answer! – ghayes Oct 6 '12 at 5:17

You might have to re check the order in witch you are merging the files, it should be something like.

  1. jquery.min.js
  2. jquery-ui.js
  3. any third partly plugins you loading
  4. your custom JS code.
share|improve this answer
its like this only json2.js, jquery-1.6.1.min.js, jquery plugins, my code . its in this order. – ghostCoder May 3 '12 at 10:55
if json2.js is using any jquery function, than jquery.min.js should be first. i would suggest. jquery.min.js, jqueryPlugins, json2.js, my code. – Billa Ustad May 3 '12 at 11:01
still the same :( – ghostCoder May 3 '12 at 11:07

I had this problem recently with the jQuery Validation plug-in, using Squishit, also getting the js error:

"undefined is not a function"

I fixed it by changing the reference to the unminified jquery.validate.js file, rather than jquery.validate.min.js.

@MvcHtmlString.Create(
    @SquishIt.Framework.Bundle.JavaScript()
        .Add("~/Scripts/Libraries/jquery-1.8.2.min.js")
        .Add("~/Scripts/Libraries/jquery-ui-1.9.1.custom.min.js")
        .Add("~/Scripts/Libraries/jquery.unobtrusive-ajax.min.js")
        .Add("~/Scripts/Libraries/jquery.validate.js")
        .Add("~/Scripts/Libraries/jquery.validate.unobtrusive.js")
         ... more files

I think that the minified version of certain files, when further compressed using Squishit, for example, might in some cases not deal with missing semi-colons and the like, as @Dustin suggests, so you might have to experiment with which files you can doubly compress, and which you just leave to Squishit or whatever you're bundling with.

share|improve this answer
Using the unminified version was just the ticket for me - thanks. – Paul Deen Dec 19 '12 at 18:01
For me it was the json2.min.js file from version 1.0.2 of a NuGet package which was causing the problem. I switched it to the non-min file and the Squishit combined file works fine now. – billoreid Mar 13 at 12:44

I just had the same message with the following code (in IcedCoffeeScript):

f = (err,cb) ->
  cb null, true

await f defer err, res
console.log err if err  

This seemed to me like regular ICS code. I unfolded the await-defer construct to regular CoffeeScript:

f (err,res) ->
  console.log err if err

What really happend was that I tried to pass 1 callback function( with 2 parameters ) to function f expecting two parameters, effectively not setting cb inside f, which the compiler correctly reported as undefined is not a function.

The mistake happened because I blindly pasted callback-style boilerplate code. f doesn't need an err parameter passed into it, thus should simply be:

f = (cb) ->
  cb null, true
f (err,res) ->
  console.log err if err

In the general case, I'd recommend to double-check function signatures and invocations for matching arities. The call-stack in the error message should be able to provide helpful hints.

In your special case, I recommend looking for function definitions appearing twice in the merged file, with different signatures, or assignments to global variables holding functions.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.