Reference: jsFiddle Shadowbox Demo
To get the content of the currently displayed Shadowbox object, use the Shadowbox API .getCurrent() method followed by the content attribute:
Shadowbox.getCurrent().content
Then to use that in the Shadowbox onFinish hook option, here is the JavaScript method to use:
onFinish: function(){
document.getElementById('theLocation').innerHTML = 'File Location: ' + Shadowbox.getCurrent().content;
}
To populate your div using jQuery, it's always best to insure you are using Shadowbox with the Shadowbox jQuery Adapter interface (download option or CMS plugin option).
Reference: jsFiddle Shadowbox Demo with jQuery
onFinish: function(){
$('#theLocation').html('File Location: ' + Shadowbox.getCurrent().content);
}
Status Update: jsFiddle HTML Markup Only
The above jsFiddle contains in the HTML panel all the markup you need (less scripts mentioned) to have a working example of showing EXIF data in a webpage div. It uses the jQuery .exif() plugin and has a lot of comments to understand and use with Shadowbox.
$(this).attr('src');to get the src file. – Shahid Ahmed Jul 27 '12 at 9:35