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;
});
});