If you want to fire an event after the document ready using jquery, you can call function inside $(document).ready(function()){// put all jQuery function here}); or $(function() {// put all jQuery function here.});
You can use
You can use
- $(document).ready(function() {
- // put all jQuery code in here.
- });
- $(function() {
- // put all jQuery code in here.
- });
No comments:
Post a Comment