Jquery

Multicolor Tabbed Menu using jQuery and CSS

Tabbed menu is getting quite popular with many well known websites and blogs. The reason for its fame is its easy to navigate functions. When you Google, you get various kinds of Tabbed Menu tutorials, but most of them give almost the pretty same look. In this post we are going to teach you how to create a multicolor tabbed menu using jQuery and CSS. Before getting into the tutorial, download jQuery and place it on your server. Then change the jQuery path and link up using the script...

Rounded Corner Box With jQuery Layering Technique

Creating rounded corner boxes in CSS can be a pain point in website development. It not just means loads of divs but also increase in page loading time. How to create rounded corner div boxes and at the same time reduce page loading time? The answer is jQuery. Use jQuery with Background Layers plugin. The plugin makes things easier. It reduces the HTML code you need to write by adding some JavaScript. Result: The code is less cluttered but very effective in reducing loading time. Below is...

Overcoming Flash Validation Issues

Flash embedding that is compliant with the web standards has always been an issue as the code runs very long and it is very difficult to place Flash reliably. So, how to overcome validation issues of Flash object on a web page? Use jQuery's document ready function (JavaScript which is triggered when the DOM is loaded). Have a look at the below code: jQuery Part $(document).ready(function(){ if ($.browser.msie)...