1
2
3
<div id="slideshow" style="background:#FFF">
	<h2 class="slideshowTitle">Around the World with Language</h2>
...

JavaScript Serena Collage slideshow

by tbeseda, November 19, 2008 21:53, No refactoring, tagged with serena, collage, serenacollage, slideshow, javascript

Creating a slideshow in our...

6e585eb21989377a2669d19cca43f40d Talk
1
2
3
<div id="showcase">
  <ul class="nav">
...

JavaScript Tab-Switching in jQuery

by Aupajo, November 19, 2008 00:45, No refactoring, tagged with javascript, tabs, jquery

Is there a better way?

Ca3dc3f93730afb41d6753d8bf010a38 Talk
1
2
3
4
measureSelect=Behavior.create({
	initialize: function(obj) {
		// Adjusts the lentgh of the select element  
...

JavaScript IE7 Option Tag Width adjust...

by openid.aol.com/forwardfootmedia, October 17, 2008 02:46, No refactoring, tagged with javascript, prototype, lowpro

No doubt, this is nearly la...

Fbb264f64b4ce69bae04764280141faf Talk
1
2
3
4
setDefaults = Behavior.create({
  initialize: function(obj) {
    myforms = this.element;    
...

JavaScript Highlight Selected forms, S...

by openid.aol.com/forwardfootmedia, October 10, 2008 01:49, 5 refactorings, tagged with prototype, lowpro, Ruby on Rails, javascript

The script binds itself to ...

Fbb264f64b4ce69bae04764280141faf Talk
1
2
3
4
var hash = new String(document.location).indexOf("#");
if(hash > 0)
{
...

JavaScript Small Javascript Code

by openid.aol.com/aviewanew, October 06, 2008 01:20, 6 refactorings, tagged with ajax, javascript, history

It's for detecting if you'r...

Avatar Talk
1
2
3
4
function toHTML(code) {
	code = removeTags(code)
	code = convertTables(code)
...

JavaScript Markdown-like editor

by Zodoz, July 03, 2008 01:36, 1 refactoring, tagged with javascript, markdown, editor

Hey all, I've created a Mar...

2bf2366ae73ca0d6974cad4575a16472 Talk
1
2
3
<html>
<head>
...

JavaScript Javascript Coverflow

by Devon, June 02, 2008 11:16, No refactoring, tagged with javascript, coverflow, animation

Recently I've been working ...

75d72a45e763d7c4d2d645596f173de5 Talk
1
2
3
4
javascript:
popw=window.open('','Tarpipe micro-post','width=800,height=150');
popw.focus();
...

JavaScript Tarpipe to twitter, jaiku a...

by griflet, May 31, 2008 00:52, No refactoring, tagged with tarpipe, javascript, bookmarklet, POST

<a href="http://tarpipe.com...

Aae34a7973a8d98e53764a1c89090c55 Talk
1
2
3
4
function odump(object, depth, max){
  depth = depth || 0;
  max = max || 2;
...

JavaScript Recursively dump an object

by hubfactor, February 01, 2008 12:40, 2 refactorings, tagged with javascript, dump, recursive

Given an object, iterate th...

Ed9c50a6db8b5e078b5ef84306a8477c Talk
1
2
3
4
/*
 Example Usage:
    new ImagePreloader({
...

JavaScript Image Preloader

by getopenid.com/deleteme, December 26, 2007 20:34, No refactoring, tagged with javascript, image, preloader, images

I'm looking at the 'createI...

Db11d496fa96adac53b422feb6efd493 Talk
1
2
3
4
function thousdands(num, decpoint, sep){
	if (arguments.length == 2) {
		sep = ",";
...

JavaScript Thousands

by Kolin, November 29, 2007 12:00, 3 refactorings, tagged with thousands, javascript, number

Formats numbers with thousa...

2f32a949f807af44f74ce14a124b9bad Talk
1
2
3
//function that loops through the elements
function __validateForm(theform){
...

JavaScript Simple form validator with ...

by eljota, November 11, 2007 10:32, 4 refactorings, tagged with js, javascript, form, validation, regex

This is a real simple form ...

Avatar Talk
1
2
3
4
#Functions [javscript]
var ms = 0;
var state = 0;
...

JavaScript Stop Watch

by richardhealy, October 27, 2007 13:31, 3 refactorings, tagged with time, clock, speed, test, javascript

I use this to test speed of...

28e65a85a625f7c0689bcf96ccf6043d Talk