Answers for "use jquery function"

40

use jquery

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
Posted by: Guest on May-30-2020
0

how to create jquery function

(function( $ ){
   $.fn.myfunction = function() {
      alert('hello world');
      return this;
   }; 
})( jQuery );

$('#my_div').myfunction();
Posted by: Guest on March-20-2021

Code answers related to "use jquery function"

Browse Popular Code Answers by Language