After some problems solved, I got a tricky stuff. I am using an overlay plugin for JQuery called prettyPhoto.
Just wanna make an overlay with a form. The form is hid
with lightbox doest not work. This is because the lightbox always enforce focus on itself.
var enforceModalFocusFn = $.fn.modal.Constructor.prototype.enforceFocus;
$.fn.modal.Constructor.prototype.enforceFocus = function() {};
$confModal.on('hidden', function() {
$.fn.modal.Constructor.prototype.enforceFocus = enforceModalFocusFn;
});