I'm using colorbox to show a login form for every new visitor. And I have disabled all options to close the overlay:
overlayClose: false,
escKey: false,
onLoad: function() {
$('#cboxClose').remove();
}
... but I assume even an intermediate user can simply hide the overlay using CSS overrides. I'd like to know if there's anything I could do in that case? Use setInterval and do the checks every few seconds and redirect if changes found or something?