Jump to content
  • 0

Błedy W Sklepie - Problem Z Plikiem Jquery ? Co Zrobic?>? Błąd Na Każdej Stronie Sklepu Ten Sam !


AZADA_M

Question

witam

ponawiam temat tylko z innym pytaniem

co moze byc przyczyną ze w sklepie mam problem z plikiem jquery ??

błąd Syntax error, unrecognized expression: unsupported pseudo: hover

błąd na każdej karcie sklepu dosłownie wszędzie ? 

co mam poporawić by to działąło prawidłowo ?? 

dziękuję za pomoc i informacje

 

link do sklepu eswiece.pl 

Edited by AZADA_M (see edit history)
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Spróbowałbym zmienić kod w pliku classie.js z:

  hasClass = function( elem, c ) {
    return elem.classList.contains( c );
  };
  addClass = function( elem, c ) {
    elem.classList.add( c );
  };

na:

  hasClass = function( elem, c ) {
    if (elem != null) {
       return elem.classList.contains( c );
    } else {
       return false;
    }
  };
  addClass = function( elem, c ) {
    if (elem != null) {
        elem.classList.add( c );
    }
  };
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...