filtrify icon indicating copy to clipboard operation
filtrify copied to clipboard

Jquery Latest

Open MuhammadEid opened this issue 8 years ago • 3 comments

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

thanks waiting your replay

BR.

MuhammadEid avatar Sep 26 '16 08:09 MuhammadEid

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());

drummerdox avatar Sep 07 '17 09:09 drummerdox

@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());

ghost avatar Oct 27 '17 18:10 ghost

@drummerdox exactly where do I put place your code?

kofiopoku avatar Nov 21 '17 16:11 kofiopoku