Topic: Getting gallery title via getGalleryInfo() object
Currently, the default browser window title of a SV gallery is "SimpleViewer-Pro Gallery".
I'm looking at a way to set the browser window title to be the same as the gallery title. Is there a way to get the gallery title via a property of the getGalleryInfo() object, or via another mechanism?
Basically, I'd like to call something like this, which would set the title after the gallery has finished loading:
<script type="text/javascript">
function svComplete() {
document.title = getGalleryInfo().title;
}
</script>
Thanks for any suggestions!