0

I running this function for a feedback panel... It was working before but now I am getting this error message. I have no idea what has cause it. I have look for other having problems with this and try some solution but still nothing. I have try taking the document but still the same error

$(document).ready(function(){
Uncaught ReferenceError: $ is not defined
    $(".trigger").click(function(){
        $(".panel").toggle("fast");
        $(this).toggleClass("active");
        return false;
    });
});
ruakh
  • 175,680
  • 26
  • 273
  • 307
Emily
  • 75
  • 1
  • 10
  • 2
    jQuery is not loaded. Check your ` – acdcjunior Jul 05 '13 at 21:55
  • 1
    Looks like the jQuery library isn't loaded when this code executes. Either 1) jQuery isn't loading at all or 2) jQuery is being loaded later in the document than this code. – David Jul 05 '13 at 21:55

1 Answers1

0

You are using object and function from jquery library. Make sure that jquery script is included in your page, using any developer tool, i.e. Firebug, DragonFly, Chrome Dev tool etc.

sgnsajgon
  • 664
  • 2
  • 13
  • 56