Posts tagged ‘JavaScript’
HTML5 Mobile Framework – Sencha
Sencha Touch allows you to develop mobile web apps that look and feel native on iPhone, Android, and BlackBerry touch devices. Source: sencha.com
HTML5 Framework – JO
JO is a lightweight JavaScript framework designed for html5 apps. Source: joapp.com
JS Formatter by JSBeautifier
Beautify, unpack or deobfuscate javascript with JSBeautifier. Source: jsbeautifier.org
JavaScript – Check If Field Filled In
function isFilled(el) { if (el.value == “” || el.value == null) { return false; } else { return true; } }[\js]
JavaScript – Basic Cookie Methods
Basic Usage:







