Skip to content

Demo: Simple Items Example

raid-ox edited this page Sep 13, 2010 · 1 revision

Demos > Simple Items Example

First Last

Source

<div id="persons">
	<div class="item"><span class="first">First</span> <span class="last">Last</span></div>
</div>
$('#persons')
	.items([
		{first:'Isaac', last:'Newton'},
		{first:'Johannes', last:'Keppler'},
		{first:'Alessandro', last:'Volta'},
		{first:'Blaise', last:'Pascal'}
	])
	.chain();

Clone this wiki locally