I'm using the below code. it's working fine
$.each(data, function (index, d) {
var clippy_swf = "swf/clippy.swf";
$('#change_this').html('').clippy({ 'text': d.address_1, clippy_path: clippy_swf });
});
but i'm trying to like this, it's not working here.
$.each(data, function (index, d) {
if (index != 0) {
multiaddr += "<div><span >" + d.address_1 + "</span><span id='change_this_" + index + "'></span></div>";
var clippy_swf = "swf/clippy.swf";
$("#change_this_" + index + "").html('').clippy({ 'text': d.address_1, clippy_path: clippy_swf });
}
});