Custom Code - Uncaught ReferenceError: $jQuery is not defined

Hi there,

Im in Customizer -> Code -> Custom Javascript

I try to get this thing to run:

$jQuery(document).ready(function() {
alert(“Hello World!”);
});

but it only makes this: (index):139 Uncaught ReferenceError: $jQuery is not defined

I tried to find a solution but nothing worked without breaking something else.

Please help. Thank you!

$jQuery isnt a thing.

try

jQuery(document).ready(function() {
    alert("Hello World!");
});

omg. thank you :see_no_evil: :grinning: