hey guys, i have a certain plugin on my website that adds a inline script segment to my website.
this is the first line of this inline script.
jQuery(document).ready(function($)
jquery 1.5 is loaded in my head. However in my normal script.js file where all my selfmade js is stored I use...
$(document).ready(function(){
Anyway... my problem is that this inline script with jQuery(document)...causes my console to shout: "jQuery is not defined"...
any idea how to fix that? I can't access the inline script!