In my smart client application, I am trying to integrate a new feature where if i click on some button then the new featured window should come up (something like a chat application). in this process, when i click on button, then the application is executing but it is in background. it is not coming into foreground. i tried to see the inspect elements/page source in one of the web application where i can see my applicationvisibility is hidden;
<div class="eba-cui-popup" style="position: fixed; visibility: hidden;"><iframe id="eba-cui-popup-iframe" src="https://eba-2.adm01.com/cui" autofocus="true" tabindex="0" allow="microphone"></iframe></div>
but in code i didn't mention the visibility property.
Help me out to bring my application into foreground.
Thanks in advance
<div class="eba-cui-popup" style="position: fixed; visibility: hidden;"><iframe id="eba-cui-popup-iframe" src="https://eba-2.adm01.com/cui" autofocus="true" tabindex="0" allow="microphone"></iframe></div>
but in code i didn't mention the visibility property.
Help me out to bring my application into foreground.
Thanks in advance
Comment