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 …
Tag Archives: link
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 …
Continue reading “How To Automatically Make URL Clickable on WordPress”
CSS set link Styles
#CSS ,#CSS a:hover, #CSS a:link,#CSS a:roll, #CSS a:visited{ font-size:12px; background-color: #FF0000; color: #FFFFFF; padding:5px; margin:2px; font-weight:normal } #supertitle{ margin:10px; font-size:15px } #supertitle a:visited, #supertitle a:Hover, #supertitle a:link, #supertitle A:visited { margin:10px; font-size:15px }
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 …