+ 2
Include jQuery in Sololearn Code?
Can we include jQuery in Sololearn Code?
7 Respostas
+ 3
Hey Zen!
The reason you are getting the error is because jQuery hasn't loaded fully yet.
Surround your JavaScript code with:
window.onload = function () {
// Your code
};
That will allow jQuery to load before executing your code.
Hope it helps :)
+ 9
Zen I am not a JQuery user, so we will wait for a JQuery user to answer you.
+ 6
Yes it is possible. Look at the JQuery tutorial.
+ 2
Sonic I have placed script:src jQuery in body tag. Then, I type $('.result').html('test') in JS section. Error: $ is not defined.
Must I place jQuery script:src in head tag?
+ 1
Thanks Edwin Pratt [Less Active; Family] . I think that will worked.
0
Thanks Edwin Pratt [Less Active; Family] . It is worked...
https://code.sololearn.com/W2mwySSeEUBr/?ref=app