views:

315

answers:

1

Is it possible to access Facebox settings? For example, I'd like to do set the location of the loading image dynamically (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'; // <-- is this possible?
    $('a[rel*=facebox]').facebox();
  });
</script>

Is this possible? How do I do that?

+2  A: 

It's possible:

$('a[rel*=facebox]').facebox({ 
    loading_image : '<?php echo base_url(); ?>media/facebox/loading.gif'
}) 
Tim
see also facebox google group: http://groups.google.com/group/facebox/browse_thread/thread/9f4ce9aa04e300b0
Tim
I love stackoverflow!
winsmith