Current User: guest
<
Blog
Welcome to the Blog
This is the new SOSensible site blog. We hope you find stuff worthy of your visit!

jQuery Data PlugIn

(Posted on 26-Aug-08)

OK... look out Spry data lovers. Here comes an amazing solution jQuery plugin for doing data dom interaction with less code and more power. Let's look at an example.

Example

HTML

<div id="quickdemo">
      <div class="item"><span class="library">Library Name</span></div>
</div>

JavaScript

$('#quickdemo')
   .items([
       {library:'DataMGR'},
       {library:'jQuery'},
       {library:'COOP'},
       {library:'SOS'}
   ])
   .chain();

What does this do for us? Well check out some live in browser demos, documentation and the code and you will be pleased to a new level.