swfaddress rewriteCategory: Javascript / AJAX

SWFaddress solves Flash SEO problems

SWFAddress-logo-317BBC3AAB-seeklogo.com

One of the biggest draw backs of flash is using back and forward buttons in the browser and Search Engine Optimization in the URL’s. Well now look no further. Introducing SWFaddress – a small JavaScript library that lets you create virtual URLs for Flash and Ajax. SWFaddress has been around …

[read more]
jquery web analyticCategory: Javascript / AJAX

Tracking outgoing links with Google Analytics and jQuery

When looking for an easy way to track outgoing links in Google Analytics with jQuery I came across this plugin. However, I needed a more flexible way of link tracking, with more control on which links to track and in what format.

For those reasons I use a small jQuery …

[read more]
jqueryCategory: Javascript / AJAX

jQuery with other frameworks without conflicts

While jQuery is certainly a popular JavaScript framework, it’s by no means the only game in town. Other frameworks such as Prototype, MooTools, Dojo and many others all have their own strengths, weaknesses, and devoted groupies.

Generally speaking, these frameworks all play well together — you can mix and match …

[read more]
$(document).ready()Category: Javascript / AJAX

Introducing jQuery $(document).ready()

This is the first thing to learn about jQuery: If you want an event to work on your page, you should call it inside the $(document).ready() function. Everything inside it will load as soon as the DOM is loaded and before the page contents are loaded.

JavaScript:

$(document).ready(function() {
 // …
[read more]
sitemap jqueryCategory: Javascript / AJAX

Create a jQuery draggable sitemap

There are a handful of javascript libraries and plugins available that attempt this task, but none of them worked flawlessly with our HTML. The real issue here is that javascript alone cannot produce a slick solution, the HTML and CSS need to be carefully constructed to ensure that the experience …

[read more]