formatting data caption in light box

formatting data caption in light box

how to format the data caption I am planning to display three different names for a single image after i click the cube light box opens and the caption comes with div tag but i wanted to display it one by one on the light box

its working fine without light box

$data = ''; $('[data-caption]').each(function(){ $data += '<div>' + $(this).data('caption') + '</div>'; }); $('body').append('<div id="more-info">' + $data + '</div>');

http://jsfiddle.net/ZrpLT/52/