+ 6
How can i include my jquery code in my html code while using Sololearn on my mobile?
3 Answers
+ 9
<script src="https://code.jquery.com/jquery-3.1.1.js"></script>
Place it in <head></head> section
...
And this in js tab
$(function(){
// your jquery here...
});
https://code.sololearn.com/Wucj6htZ70JO/
+ 8
sure...
+ 7
Thanks Nikkiđ. Let me do that.