Krishna Priya
Krishna Priya

Reputation: 31

multibox lightbox

I'm using multibox 1.4 lightbox to show an enquiry form using PHP.

<a href="enquiry form popuppage link" class='mb3'  >
  <div align="center">
    <img src="images/sendenquiry.jpg" border="0">
  </div>
</a>

It opens the form to submit. The problem is I need to close the enquiry form, once after the Thank you alert/print message and not by using the existing close button.

Settings as follows:

var mb3;

window.addEvent('domready', function(){
    mb3 = new multiBox('mb3', {
        overlay: new overlay(),
        movieWidth:500,
        movieHeight:700,
    });

    var advanced = new multiBox('advanced', {
        overlay: new overlay(),
        descClassName: 'advancedDesc'
    }); 
});     

Any one please help in this issue.

Upvotes: 0

Views: 1120

Answers (1)

Linh NMT
Linh NMT

Reputation: 1

If you are a fan of jQuery, you can use Divbox which is similar to Multibox.

In this lightbox, you can handle the close button.

Upvotes: 1

Related Questions