A function $in jQuery will never return null. . Therefore, this is probably another non-jQuery $. (Is there any ASP.NET stuff or prototype.js or some other library in use? A custom function $declared later?)
, $ null, , : "$ ". , ($(...)) null, .
Try:
$(document).ready(function($) {
...
});
, , window.jQuery, window.$:
jQuery(function($) {
...
});
, , , $ "" ( $(...).ready). , ( ), $ jQuery ...
, $ jQuery ( - Firebug):
$ === jQuery , noConflict$.fn.jquery $().jquery jQuery$ ( " " )
, (, "" ), , / .
.
user166390