In my last post you have seen how to detect Internet Explorer 6 using Javascript. If you love jQuery like I do then here is the simple snippet that you can use to Internet Explorer 6 using jQuery.
jQuery.each(jQuery.browser, function(i, val) {
if(i=="msie" && jQuery.browser.version.substr(0,1)=="6")
alert("Do stuff for IE 6")
});
As a Web Developer I have stopped giving support to clients for Internet Explorer 6. Recently I was analysing the traffic on my social networking website (for those who don’t know I recently launched a social networking website exclusive for people in Hyderabad, its Wakaao!) and to my surprise about 30% of people visiting my....
Posted on October 22, 2009 by Atif
Filed Under Games
Do you play the game SNODS on twitter ? If yes then this is for you.
I was feeling bored this hour and passing my time playing SNODS. The game inspired me to write this short plugin which will sound beneficial for all those who play the game SNODS
Quick SNODS is a userscript extension for GreaseMonkey....
If you are a good blogger you don’t get bored writing a blog. However lack of essential tools for blogging can sometimes get make blogging boring. There are many tools that allow you to write a blog post locally and publish it to your Wordpress blog via XML-RPC service. XML-RPC is a service that remotely....
Pagination on blogs is quite in common. But an AJAX powered pagination on a cool themed blog is the apple of my eye. In this tutorial we are going to see how to change your old styled pagination into an AJAX powered dynamic pagination.
In this tutorial I assume that you have basic knowlege of editing....