Wicket Modal Window, any way to close it if i click outside of the modal window?

400 Views Asked by At

As the title says, i am working using wicket 6 and it would be very useful if the modal window was to close when i clicked outside of the bounds of the modal window, anyone have any idea on how i might go about this?

1

There are 1 best solutions below

2
On

Try by adding this JS to your page:

$(function() {
    $('.wicket-mask-dark').click(function() {
        $('.w_close').click();
    });
});