Rauf
Rauf

Reputation: 12842

Remove 'Webpage Dialog' from 'showModalDialog' window using jQuery or javascript

Somewhere in page, I use

onclick="window.showModalDialog("http://rauf-thecoder.blogspot.com/");" .

It will show the following. enter image description here

How can I remove the Webpage Dialog text from the title bar :( I am happy to use jQuery too.

Upvotes: 2

Views: 6365

Answers (1)

Strelok
Strelok

Reputation: 51441

You cannot remove it (it's kind of a visual cue to the user that they are still in a web browser) as it displays the <title> tag of the page they are on. So obviously you cannot remove it if you display a site that you do not control.

If it's your web page that you control, just pad the <title> tag with spaces, or invisible characters until it pushes "Webpage Dialog" off screen inside the title bar.

Upvotes: 4

Related Questions