Click here to Skip to main content
15,887,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

i want to know few clarification about javascript popup window title.

in my javascript popup window there is a text showing like "webpage dialog" on my popup window.

i cannot remove that text, is there any option to remove for that.
or else kindly suggest me a similar solution if you have.

thanks in advance.
Posted

1 solution

You can try this :

Html code :

HTML
<input type="button" id="bthPopUp" value="Test Popup title" onclick="OpenPopUp()" />


JavaScript
function OpenPopUp() {

    var win = window.open('', 'Window', 'menubar=0, location=0 ,toolbar=0, resizable=1 ,status=1, scrollbars=1');

    if (win.document) {
        win.document.title = "My New Title";
    }
}


Hope it helps you.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900