Today I will show you how to be an expert in JQuery. With this Jquery series you can do everything you want with your GUI and your JavaScript perfectly.
Now, Lets start with how to install JQuery.
To install Jquery the fist thing you must do is download jquery from jquery foundation.
Second, You need to add this Jquery file to Your website in Header of HTML see code snipet below
<script type="text/javascript" src="http://code.jquery.com/jquery-x.x.x.min.js"></script>
Now you can test If Jquery working or not.
See code snipet below
<script type="text/javascript"> $(document).ready(function() { alert(1); }); </script>
Enjoy your Job. 🙂