I've been at this for three days and really figured its time to ask for help. I am running galleria fullscreen and I want to be able to show a hidden div on-click. I've wrapped the image in a div and tried calling it as shown bellow but Nothing I've tried seem to work. What am I missing please
<div class="galleria">
<div id ='showdiv'>
<img src=\"$fullpath\",data-description=\"$datadescr\">
</div>
</div>
<script>
$(function() {
Galleria.loadTheme('http://example.net/galleria.fullscreen.min.js');
Galleria.run('.galleria', {
transition: 'fade',
imageCrop: false
});
});
</script>
<script>
$(document).ready(function() {
$('#showdiv').click(function(){
alert("try");
//show div function
});
});
</script>