Hi there,
I am having the exact same issue but contrary to what ray2030 said, I think it is directly related to your plugin trying to override the jquery ready function at a time it is not yet loaded.
The issue is related to that piece of script that also appears on my website only when activating your plugin and that still raise an error on ray2030’s demo site (check his link, I don’t think he solved the issue)
<script type='text/javascript' id='jquery-js-after'>;
var v = jQuery.fn.jquery; //THE PROBLEM APPEARS HERE
if (v && parseInt(v) >= 3 && window.self === window.top) {
var readyList=[];
window.originalReadyMethod = jQuery.fn.ready;
jQuery.fn.ready = function(){
if(arguments.length && arguments.length > 0 && typeof arguments[0] === "function") {
readyList.push({"c": this, "a": arguments});
}
return window.originalReadyMethod.apply( this, arguments );
};
window.wpfReadyList = readyList;
}
</script>
I think you should at least check for the jQuery lib to be loaded
By the way, thx for your great job ??
-
This reply was modified 2 years, 9 months ago by aguiran.