Uploader

An all around general purpose file uploader for CakePHP. Packaged as a stand alone plugin with file validation, file scanning and support for a wide range of basic mime types.

Element Exists

Checks to see if an element exists in the DOM

Function: elementExists()
Category: Javascript
Views: 1,183
Permalink - Tinylink

/**
 * Checks to see if an element exists in the DOM
 * @param string id
 * @return boolean
 */
function elementExists(id) {
	return document.getElementById(id);
}

Return to Snippets