AZADA_M Posted November 21, 2015 Share Posted November 21, 2015 (edited) 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 November 21, 2015 by AZADA_M (see edit history) Link to comment Share on other sites More sharing options...
0 AZADA_M Posted November 21, 2015 Author Share Posted November 21, 2015 a moze to powoduje menu poziome ??? Link to comment Share on other sites More sharing options...
0 Daresh Posted November 22, 2015 Share Posted November 22, 2015 Wygląda na to, że błąd powstaje w linii 105 pliku global.js, trzeba by więc zapytać autora szablonu co miał na myśli, bo to by raczej wymagało dłuższej analizy. Link to comment Share on other sites More sharing options...
0 AZADA_M Posted November 22, 2015 Author Share Posted November 22, 2015 <brawo> 2:0 dla Ciebie a co powiesz na to 273classie.js:35 Uncaught TypeError: Cannot read property 'classList' of null tez w index Link to comment Share on other sites More sharing options...
0 Daresh Posted November 22, 2015 Share Posted November 22, 2015 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 More sharing options...
0 Krystian Podemski Posted November 25, 2015 Share Posted November 25, 2015 Problemem nie jest sam classie.js ale odnoszenie się do selektorów, które nie istnieją w tym fragmencie kodu: Link to comment Share on other sites More sharing options...
Question
AZADA_M
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
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 accountSign in
Already have an account? Sign in here.
Sign In Now