swfaddress

Deep linking for Flash and Ajax SWFAddress is a small but powerful library that provides deep linking for Flash and Ajax. It’s a developer tool, allowing creation of unique virtual URLs that can point to a website section or an application state. SWFAddress enables a number of important capabilities which are missing in today’s rich …

How To Automatically Make URL Clickable on WordPress

There are a time we need to put some URL on our WordPress content and make this content clickable. We need to added the link manually or using WYSIWG menu. And this is real pain if we must do this each time we add URL. Did you know that, WordPress offering functions to make this …

Make a Div Into a Link

It’s easy to make any div into a link by using a bit of javascript. You can use this technique to make any div “clickable”. For example, you might want your “header” div to link to your home page. Here’s how it’s done. <div onclick=”location.href=’http://www.example.com’;” style=”cursor:pointer;”></div> you can make your header div clickable by using …