I include jQuery in my site with Google CDN:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
All works as expected, but when I try to access it with any web proxy online such as Zend2 or Proxify, then jQuery cannot be loaded. Depending on which jQuery version is included and the web proxy used, we get various error messages in the browser console when the browser tries to parse jquery.min (var is undefined, etc).
All sites using jQuery, including jQuery's site itself, have the same issue. For example try to use the jQuery UI demo site through a web proxy: the jQuery UI widgets can't be used, see all error messages in your web console.
I tried dozens of proxies, I only found one wich is miraculously able to parse jQuery.
Why jQuery does not work with most of these web proxies? Is there any workaround? Thanks!