Can I access Facebox settings? For example, I would like to set the dynamic location of the location of the uploaded image (see line 4):
<script type="text/javascript" src="<?php echo base_url(); ?>media/facebox/facebox.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
Facebox.loadingImage = '<?php echo base_url(); ?>media/facebox/loading.gif';
$('a[rel*=facebox]').facebox();
});
</script>
Is it possible? How to do it?
source
share