/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<script> $(document).ready(function () { // jq domready functions - execute the function $('#element').myFunctionName(); }); (function ($) { $.fn.myFunctionName = function (limit, interval) { // do stuff }; })(jQuery); </script>