Monday, September 19, 2011

Registry Edits for Windows XP

Windows XP - Fix Suddenly lost the ability to minimize programs onto the taskbar


Registry Edits for Windows XP

Thursday, September 15, 2011

WYSIWYG HTML editors

elRTE is a WYSIWYG HTML editor for the Web written using jQuery. It features rich text editing, options for changing its appearance and style, insertion and management of various HTML elements with formatting (images, tables, lists, etc.), support for viewing and editing HTML code, and normal and full-screen modes.
elRTE

TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under LGPL by Moxiecode Systems AB.
TinyMCE

PATCH .trim() in JavaScript not working in IE


if (typeof String.prototype.trim !== 'function')
{
String.prototype.trim = function()
{
return this.replace(/^\s+\s+$/g, '');
}
}