.fill()
Syntax Variants
Parameters
- text
- a string to set as text node of the list elements
- node
- a DOM node to add to the list. If the list has more than one element, the given node will be added to the first element.
For all additional elements, the node will be cloned using
clone(). - list
- a list containing text and/or nodes. May also contain nested lists with nodes or text..
- factoryFunction
- a
function(listItem, listIndex)that will be invoked for each list element to create the nodes:- listItem
- The list element that will receive the new children.
- listIndex
- The index of the list element that will receive the new children.
- (callback return value)
- The node(s) to be added to the list element. Can be either a string for a text node, an HTML element or a list containing strings and/or DOM nodes. If a function is returned, it will be invoked recursively with the same arguments.
- (return value)
- the current list
Description
Sets the content of the list's HTML elements, replacing old content. If a string has been given, it will be added as text node. DOM nodes will be added directly. If you pass a list, all its elements will be added using the rules above.
When you pass a DOM node and the target list has more than one element, the original node will be added to the first list element, and clones to all following list elements.
EE(), HTML() and clone() are compatible with fill() and can help you create new HTML ndoes.
Call fill() without arguments to remove all children from a node.
Example
Using the following HTML:
<div id="status">Done</div>fill() with a simple string replaces the element's content with the new text:
$('#status').fill('Please Wait..');
Results in:
<div id="status">Please Wait..</div>
Example
Pass an element to replace the old content with the element:
$('#status').fill(EE('span', {'className': 'bold'}, 'Please Wait...'));
With the previous example's HTML, this would create this:
<div id="status"><span class='bold'>Please Wait..</span></div>
Example
You can also pass a list of elements and texts:
$('#status').fill(['Here', EE('br'), 'are', EE('br'), 'four', EE('br'), 'lines.]);
Example
Or a complete structure built using EE:
$('#myListContainer').fill([
EE('h2', 'My List'),
EE('ol', [EE('li', 'First Item'), EE('li', 'Second Item'), EE('li', 'Third Item')])
]);
Example
You can write a factory function that re-creates the list for every instance:
$('.listContainers').fill(function(e, index) { return [
EE('h2', 'List Number '+index),
EE('ol', [EE('li', 'First Item'),
EE('li', 'Second Item'),
EE('li', 'Third Item')
])]});
Example
fill() without arguments deletes the content of the list elements:
$('.listContainers').fill();
See also..
add()works like fill(), but does not delete children.addFront()adds nodes as first child, not as last.addAfter()adds nodes not as children but as siblings.addBefore()also adds nodes not as children but as siblings.replace()replaces existing nodes.ht()is a alternative for replacing element content with a HTML snippet.
Comments
comments powered by DisqusFunctions
- $() Web
- list.length Web, Util
- $$() Web
- $.getCookie()
- $.loop() Web
- $.off() Web
- $.parseJSON() Web
- $.ready() Web
- $.request() Web
- $.setCookie()
- $.toJSON() Web
- $.wait()
- .add() Web
- .addAfter() Web
- .addBefore() Web
- .addFront() Web
- .animate() Web
- .array() Util
- .call() Util
- .clone() Web
- .collect() Web, Util
- .contains() Util
- .dial() Web
- .each() Web, Util
- .endsWith() Util
- .equals() Util
- .fill() Web
- .filter() Web, Util
- .find() Web, Util
- .findLast() Web, Util
- .get() Web
- .hide() Web
- .ht()
- .intersection() Util
- .is() Web
- .join() Util
- .map() Util
- .merge() Util
- .next() Web
- .not() Web
- .offset()
- .on() Web
- .onChange() Web
- .onClick() Web
- .onFocus() Web
- .onOver() Web
- .only()
- .per() Util
- .reduce() Util
- .remove() Web
- .replace() Web
- .reverse() Util
- .select() Web
- .set() Web
- .show() Web
- .sort() Util
- .startsWith() Util
- .sub() Web, Util
- .text() Web
- .toObject() Util
- .toggle() Web
- .trav() Web
- .trigger() Web
- .uniq() Util
- .unite() Util
- .up() Web
- .values() Web
- EE() Web
- HTML() Web
- M Web, Util
- MINI.getter Web
- MINI.setter Web
- Minified Lists Web, Util
- Promise Web, Util
- _() Util
- _.bind() Util
- _.copyObj() Util
- _.dateAdd() Util
- _.dateClone() Util
- _.dateDiff() Util
- _.dateMidnight() Util
- _.eachObj() Util
- _.escapeHtml() Util
- _.escapeRegExp() Util
- _.extend() Util
- _.filterObj() Util
- _.format() Util
- _.formatHtml() Util
- _.formatValue() Util
- _.isBool() Util
- _.isDate() Util
- _.isEmpty() Util
- _.isFunction() Util
- _.isList() Util
- _.isNumber() Util
- _.isObject() Util
- _.isString() Util
- _.isValue() Util
- _.keys() Util
- _.mapObj() Util
- _.pad() Util
- _.parseDate() Util
- _.parseNumber() Util
- _.partial() Util
- _.promise()
- _.range()
- _.template() Util
- _.toString() Util
- _.trim() Util
- _.values() Util
- define() Web, Util
- promise.always()
- promise.error() Web, Util
- promise.fire()
- promise.stop()
- promise.then() Web
- require() Web, Util
- How to...