


3 steps to create a simple tooltip box
Tooltip is a message box that appears when cursor is positioned over an image, icon, link or any other HTML element. In this example mouse over on a icon and it will show tooltip showing a text message. In this tutorial I'm going to show you how to create a simple tool tip box in [...]
3 super simple ways to keep your jQuery code safe
If you are developing code for free distribution or developing plugins for sale, it is always recommended to consider the possibilities of name/id conflict. Think about the situation, if some other scripts imported after yours, that also contains a $ function like jQuery? To avoid that kind of issue, you can either call jQuery's noConflict(), [...]
5 most wanted jQuery snippets for web developers
In development session, sometimes we need to compress our scripts to reduce size of script containing file. So, it's the time to learn a smart way how to write shorthand code in jQuery. It not only save your code size but also make your code more clean and fresh :) //Old Fashion $(document).ready(function() { //Write [...]