Hello to all.
Please help me to figure it out, how to make that the page (behind keyboard) goes blur when keyboard is open.
I have this:
visible: function() {
$('body').addClass('overlay-active');
},
hidden: function() {
$('body').removeClass('overlay-active');
}
but this only change back page color (add grey overlay).
I would like to add blur to this overlay.
Thanks.