Documentation

getItemNode

returns html element of the item

void getItemNode(id id);

Parameters

ididid of the item

Example

var node = mylist.getItemNode(123);
node.innerHTML = "some text";

Back to top