There is not much to talk about it... It let's you save information (metadata if you prefer) to objects. This should explain it all:
$('#profile_name').data('metaInfo', 'This is my extra data about the object'); $('#change_profile_name').val( $('#profile_name').data('metaInfo') ); ---- Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 12:51 PM, Chris J. Lee <chri...@gmail.com> wrote: > > I haven't been able to find good documentation on the use of $.data. > Does anyone have any good links to use of this function?