Thursday, 4 April 2013

jQuery: Call jQuery function all the time

Want to call a jQuery function all the time. Call the function in document.ready function:




 <script type="text/jscript">
        $(document).ready(function () {
            AnimateTitle(); // this function will be called all the time page is available
        });
    </script>



No comments:

Post a Comment