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, 1 refactoring, 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, 2 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