Answers for "do I need to add jquery or is it there on javascript itself"

3

javascript import jquery

//add this line somewhere in the html
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
Posted by: Guest on November-29-2020
0

how to use jQuery

<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>jQuery</title>
  </head>
  <body>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
    <script>
      //jQuery code
    </script>
  </body>
</html>
Posted by: Guest on October-26-2020

Code answers related to "do I need to add jquery or is it there on javascript itself"

Code answers related to "Javascript"

Browse Popular Code Answers by Language