Easy Tip to write clean and manageable jQuery Code
jQuery gives amazing power to make things simple and easy to implement. For jQuery to work, we need to put all the code in $(document).ready() function and there can be many $(document).ready() function in a single page. But putting everything inside $(document).ready() function may make your code look ugly, not understandable, unmanageable and sometimes buggy. […]