Get DOM-Object
10
This is a function I created to ease headaches caused by creating and inserting new stuff in an HTML document dynamically. Essentially, it allows you to specify an HTML tag, in its entirety (attributes, styles, event handling, etc), via a single command. You can nest it, so as to create an entire element tree programmatically in a lot less time as with document.createElement.
Don't let the goofy function acronym fool you; this is damned powerful.
First, the function spec:
HTMLElement acne(type[,attributes[,styles[,events[,children[,parent[,document]]]]]]);
Arguments:
Return value: The newly created/configured element
Don't let the goofy function acronym fool you; this is damned powerful.
First, the function spec:
HTMLElement acne(type[,attributes[,styles[,events[,children[,parent[,document]]]]]]);
Arguments:
String type: type of element to create; same information as the argument of document.createElement
mixed Object attributes: attributes you want the new element to have (ie: href, src)
mixed Object styles: styles for the new element (ie: width, borderLeft)
(function|function Array) Object events: event handlers for the new element
HTMLElement|HTMLElement Array children: elements you want to be in the new element (ie: nesting is possible)
HTMLElement parent: parent node of object
HTMLDocument document: document to create element in
Return value: The newly created/configured element
10
Make External Links Open in New Window
10
Cookie Handle
10
AJAX: In situ edit
A simple edit in place using Prototype, based on the tutorial @ 24ways.org
A simple edit in place using Prototype, based on the tutorial @ 24ways.org
10
A small example demonstrating inheritance in Javascript, complete with calling base class constructors and methods. For the more detailed description, visit http://www.adampresley.com.
10
Highlight table row on rollover.
10
Table Row Hove
10
mattrmiller
This is a correct way to do login form auto-focus, checking to see if either username or password have focus already. This prevents someone from typing a username hitting TAB, then having JavaScript chime in, resetting focus to Username while user is typing in their password. In this case, the password is appended to the username which is in plaintext.
10
This will convert the time from number of seconds to HH:MM format









