2

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.

Rauf
  • 12,326
  • 20
  • 77
  • 126

1 Answers1

4

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.

Strelok
  • 50,229
  • 9
  • 102
  • 115