+ 1
Please is there a way I can use jQuery for my js in the coding area?
2 ответов
+ 6
Yes. Just tie in the library to your HTML file in the head section.
<!-- jQuery library from jQuery tutorial -->
<script src="https://code.jquery.com/jquery-3.1.1.js"></script>
<!-- jQuery library from Bootstrap tutorial -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
+ 1
thanks.