jquery from js

Solutions on MaxInterview for jquery from js by the best coders in the world

showing results for - "jquery from js"
Fabio
07 Jun 2016
1$(document).ready(function() {
2  $('a').click(function(event) {
3    event.preventDefault();
4    $(this).hide("slow");
5  });
6});
Giada
18 Jan 2017
1<script src="jquery-1.6.1.js"></script>
2<script src="my_jquery.js"></script>