bpopup
bpopup copied to clipboard
bPopup is a lightweight jQuery modal popup plugin (only 1.34KB gzipped). It doesn't create or style your popup but provides you with all the logic like centering, modal overlay, events and more. It gi...
not tremendously exciting, but would allow you to subscribe to an event when the popup closes.
The current version has a bug where calling the public close() function does not call the onClose callback function. Added functionality to the public close() function so that the onClose...
Hello, dinbror, First of all, thank you very much for providing such a nice component. I really love it. I'd like to ask you for some help: is there any...
Studying the code, I think I saw that starting vPos for a slideDown-effected popup was its ending vPos minus its height. But if popup height is quite small and/or window...
is it possible to disable parent window after open bpopup?
Incorrect position with missing or legacy doctype on html page. `$('#video').bPopup({ follow: [true, true], positionStyle: 'absolute', modalClose :false });`
Hi there, Is it possible to popup a Laravel 4 blade template view? I have looked at: $('element_to_pop_up').bPopup({ contentContainer:'.content', loadUrl: 'test.html' //Uses jQuery.load() }); but not sure why having the...
I want to simulate the confirm function with this awesome plugin, but it looks like just have onClose callback, so i added onConfirm in it. If it is useful to...
I modified copy of mine: ``` javascript default: open(); $('') .load(o.loadUrl, o.loadData, function(response, status, xhr) { triggerCall(o.loadCallback, status, response); recenter($(this)); }).hide().appendTo(o.contentContainer); break; ``` And ``` javascript function triggerCall(func, arg1, arg2)...