The page is this: link
Problem: When I'm at a resolution lower than 800px (yes, I'm using media queries
), I make the menu retract into a default figure, the menu opens. But this is giving error:
Uncaught ReferenceError: $ is not defined sobre.php:69
Uncaught ReferenceError: urlproduto is not defined VM127:6
On line 69
$(document).ready(function(e){
$(".menuAbrir").click(function() {
$(".menuNav").show();
$(".menuAbrir").hide();
});
$(".menuFechar").click(function() {
$(".menuNav").hide();
$(".menuAbrir").show();
});
});
I have this JQuery
to open the menu as it is included on all pages. But this one is giving this error;
More precisely, line 69:
$(document).ready(function(e){
What to do?