Jquery works fine. Everything is functional. If I open up console and type :
console.log($)
it returns :
function()
But if I type:
$("p")
I get:
null
Literally for anything. Strange! So I open up Google Chrome and try out their Console. Chrome returns :
undefined
jQuery is properly embedded in the header. And again, everything is working fine on the site itself.
Side Note
I just upgraded Firefox, and realizing that it was too early for my plugins to catch up, I uninstalled it and installed 7. jQuery does work perfectly alright on other sites.
When I tried going to your site
$isundefinedI just noticed in one of your files you have:
var $j = jQuery.noConflict();This makes
$undefined and sets$jas your jQuery handler. (see source here)So if you try
$j('selector')it works fine ^_^(the name of the file is
bwbps.js)