luis-almeida / filtrify

Beautiful advanced tag filtering with HTML5 and jQuery
Other
642 stars 113 forks source link

Jquery Latest #67

Open MuhammadEid opened 7 years ago

MuhammadEid commented 7 years ago

Hi. any update for latest jquery beacause we working with latest bootstrap jquery file

thanks waiting your replay

BR.

drummerdox commented 6 years ago

I have error like $.browser is undefined when switch project to jquery 2.2.4. And I solve error with this code to use latest jquery and filtrify. //$.browser is undefined fix for filtrify js jQuery.browser = {}; jQuery.browser.mozilla=/mozilla/.test(navigator.userAgent.toLowerCase())&&!/webkit/.test(navigator.userAgent.toLowerCase()); jQuery.browser.webkit=/webkit/.test(navigator.userAgent.toLowerCase()); jQuery.browser.opera=/opera/.test(navigator.userAgent.toLowerCase()); jQuery.browser.msie=/msie/.test(navigator.userAgent.toLowerCase());

ghost commented 6 years ago

@drummerdox thank yo so much. after adding these codes to the end of page, inside <script></script> tags, that works. after "for filtrify js" words, there should be new lines like this:


jQuery.browser = {};
jQuery.browser.mozilla=/mozilla/.test(navigator.userAgent.toLowerCase())&&!/webkit/.test(navigator.userAgent.toLowerCase());
jQuery.browser.webkit=/webkit/.test(navigator.userAgent.toLowerCase());
jQuery.browser.opera=/opera/.test(navigator.userAgent.toLowerCase());
jQuery.browser.msie=/msie/.test(navigator.userAgent.toLowerCase());
kofiopoku commented 6 years ago

@drummerdox exactly where do I put place your code?