+ 1
jQuery
Is jQuery added into the code playground already or will I have to link it in? If so, can it go in the HTML in <script> tags or with JavaScript?
2 Answers
+ 15
It is not added by default but typing the following line in your html file is enough to add jQuery:
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
;)
+ 2
Thanks.