<div id="example" class="photobooth" style="758px;height:400px"></div>
<div id="gallery"></div>
<script>
$('#example').photobooth().on("image",function( event, dataUrl ){
$( "#gallery" ).append( '<img src="' + dataUrl + '" >');
console.log(dataUrl)
});
</script>