JQuery menu does not open!

1

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?

    
asked by anonymous 28.06.2016 / 14:30

1 answer

2

Viewing the source code of the page will not find the link to Jquery. Do the following:

Before your code <script type="text/javascript"> ...sua função </script> add the reference of your jquery.js file, <script src="jquery.js"> .

    
28.06.2016 / 14:40