Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The superbox is a jquery plugin that has lightbox effect. My problem is how can I change this thing instead of click, it will automatically loads when the page is executed. The code rel in <a> is required. How can I set that to onload or automatically popup when I visit the page.

My Code:

<link rel="stylesheet" href="css/jquery.superbox.css" type="text/css" media="all" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery-superbox-0.9.1/jquery.superbox.js"></script>
<script type="text/javascript">
$(function(){
  $.superbox();
});
</script>
<a href="forgotpass.php" class="text-links" rel="superbox[iframe]">Click here.</a>
share|improve this question

1 Answer

up vote 3 down vote accepted

Unless you want to mess around with the plugin code, you could invoke the link click event, not pretty but it'll work.

<link rel="stylesheet" href="css/jquery.superbox.css" type="text/css" media="all" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery-superbox-0.9.1/jquery.superbox.js"></script>
<script type="text/javascript">
$(function(){
  $.superbox();
  $('#lightbox_click').trigger('click');
});
</script>
<a href="forgotpass.php" id="lightbox_click" class="text-links" rel="superbox[iframe]">Click here.</a>

Note that the link is now using an ID, you'd only want to target a single link, and that's what we're doing with the $('#lightbox_click').trigger('click'); code.

share|improve this answer
Thank you so much. This is really great answer. – Jorge Jun 24 '10 at 8:54
You're very welcome :-) – Ben Everard Jun 24 '10 at 8:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.