最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jQuery error: "$ is undefined" - Stack Overflow

programmeradmin2浏览0评论

I'm using a enhanced version of Lightbox called SexyLightbox. It uses jQuery as its framework. When I initialize it, I get this error on regular invervals when the Lightbox isn't running and an infinite amount of times when I attempt to show a picture:

Error: $ is undefined
Source File: .v2.3.jquery.min.js
Line: 12

The initialization script goes as this:


    <link rel="stylesheet" href="sexylightbox/sexylightbox.css" type="text/css" media="all" />

    <script type="text/javascript" src="sexylightbox/jquery.min.js"></script>
    <script type="text/javascript" src="sexylightbox/jquery.easing.1.3.js"></script>

    <script type="text/javascript" src="sexylightbox/sexylightbox.v2.3.jquery.min.js"></script>

    <script type="text/javascript">
        $(document).ready(function(){
          SexyLightbox.initialize({color:'black', dir: 'sexyimages'});
        });
    </script>

UPDATE So - I've replaced the library, I'm using the unpacked version of sexylightbox. FireBug points out the error on the jQuery.bind() function, specifally on the bolded line:


jQuery.bind = function(object, method){
  var args = Array.prototype.slice.call(arguments, 2);  
  return function() {
    var args2 = [this].concat(args, $.makeArray( arguments ));  
    return method.apply(object, args2);  
  };  
};  

jQuery version being used is 1.3.2.

Any thoughts on what might be happening?

Solved

Problem was a coding error on SexyLightbox author's code. Used $ on jQuery.bind() before $ is defined.

I'm using a enhanced version of Lightbox called SexyLightbox. It uses jQuery as its framework. When I initialize it, I get this error on regular invervals when the Lightbox isn't running and an infinite amount of times when I attempt to show a picture:

Error: $ is undefined
Source File: http://bagelstreet.se/sexylightbox/sexylightbox.v2.3.jquery.min.js
Line: 12

The initialization script goes as this:


    <link rel="stylesheet" href="sexylightbox/sexylightbox.css" type="text/css" media="all" />

    <script type="text/javascript" src="sexylightbox/jquery.min.js"></script>
    <script type="text/javascript" src="sexylightbox/jquery.easing.1.3.js"></script>

    <script type="text/javascript" src="sexylightbox/sexylightbox.v2.3.jquery.min.js"></script>

    <script type="text/javascript">
        $(document).ready(function(){
          SexyLightbox.initialize({color:'black', dir: 'sexyimages'});
        });
    </script>

UPDATE So - I've replaced the library, I'm using the unpacked version of sexylightbox. FireBug points out the error on the jQuery.bind() function, specifally on the bolded line:


jQuery.bind = function(object, method){
  var args = Array.prototype.slice.call(arguments, 2);  
  return function() {
    var args2 = [this].concat(args, $.makeArray( arguments ));  
    return method.apply(object, args2);  
  };  
};  

jQuery version being used is 1.3.2.

Any thoughts on what might be happening?

Solved

Problem was a coding error on SexyLightbox author's code. Used $ on jQuery.bind() before $ is defined.

Share Improve this question edited Jan 27, 2010 at 14:43 Joel A. Villarreal Bertoldi asked Jan 27, 2010 at 14:02 Joel A. Villarreal BertoldiJoel A. Villarreal Bertoldi 8,0178 gold badges37 silver badges51 bronze badges 6
  • pretty obvious you forgot to include jQuery.. :) cheers! – Reigel Gallarde Commented Jan 27, 2010 at 14:07
  • 4 Perhaps you'd like to read a bit before menting? :) – Joel A. Villarreal Bertoldi Commented Jan 27, 2010 at 14:08
  • 1 Try clearing you cache pletely out Joel...I tested in a few browsers here, all working no JS errors. – Nick Craver Commented Jan 27, 2010 at 14:08
  • @Nick Craver: cleared the cache, same results. – Joel A. Villarreal Bertoldi Commented Jan 27, 2010 at 14:13
  • may i ask what version is your jQuery? – Reigel Gallarde Commented Jan 27, 2010 at 14:23
 |  Show 1 more ment

4 Answers 4

Reset to default 5

Something in sexylightbox.v2.3.jquery.min.js is causing $ to be set to undefined. If you set a break point before that file loads, $ is correctly an alias for jQuery. I would try loading a version of sexylightbox.v2.3 that hasn't been run through Packer. That way you can properly use Firebug to figure out what is going on.

Is there any reason you might need to use jQuery.noConflict()?

I think it might have something to do with Content-Type. It seems that jquery.min.js isn't responding with a content type but sexylightbox.v2.3.jquery.jsdoes: application/x-javascript. Can you get those other requests to use application/x-javascript ?

how about try to download the files on their demo that works already.

files on their demo:

  • jQuery
  • sexyLightbox
  • easing

use the files that is seen to work... maybe it will help you...

发布评论

评论列表(0)

  1. 暂无评论