Replace HTML Attribute Using jQuery

March 11th, 2009  |  Published in Development  |  Comment

I had a small project that asked for a URL and a pixel-image to be tracked. Another requirement was to replace a certain string in it with a timestamp of some sort.

Read the rest of this entry »

jQuery onLoad for Body-tag

April 15th, 2008  |  Published in Development

<script type="text/javascript">
$(document).ready(function() {
    someFunction();
    ...
});
</script>