The Blog

Detect Internet Explorer using jQuery

Detect Internet Explorer using jQuery
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") });

Detect Internet Explorer 6 using JavaScript

Detect Internet Explorer 6 using JavaScript
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....

Quick SNODS for Twitter

Quick SNODS for Twitter
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....

Setting Up Windows Live Writer for Easy Blogging [Wordpress Blog]

Setting Up Windows Live Writer for Easy Blogging [Wordpress Blog]
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....

Creating an AJAX Powered Pagination in Wordpress

Creating an AJAX Powered Pagination in Wordpress
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....