In this case you want a .each()
and use this
where needed inside to get an attribute from the current element for usage, like this:
$('.ckeip_edit').each(function() {
$(this).ckeip({
data: {
name : 'value',
id : this.id
},
//options...
});
});
Nick Craver
2010-09-22 01:10:53