Simple problem that I cannot find the answer to. I have made a jsfiddle of the problem.
I have this Javascript code:
$(document).ready(function(){
$('#display-feedback-form').off('click').on('click', function(){
$('#feedback_form').show();
});
});
Here is the fiddle with an example: JSFiddle
Why am I getting this error? Jquery is loaded correctly on the page.