Currently I'm programming with JSF 2.2 and i would like to know if there is any framework component that behave in the same way a javascript alert box like:
<script>
function PopUpOP() {
setInterval(function(){alert("Hey!")}, 1800000);
}
</script>
I would like to have the window open as a modal window and get the user attention no matter on which browser tab the user is working on like alert box do.
Thank you!