In window.open for an aspx page; I have the property titlebar set to "no" but the page still shows the title. Also, how do I display this popup without displaying the url?
function demo()
{
window.open("https://www.google.com.sg/?gfe_rd=cr&ei=UTmeWfSlEqnz8AfLsKTACw&gws_rd=ssl", "", "directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400,height=350");
}
Note:-
some of the properties/ parameters are only supported in some of the browsers. so when you try to make a test with different browsers. you will notice that in some browsers some property is working and in other browser same property is not working.
MSDN Community Support
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.
Member
75 Points
466 Posts
Titlebar=no still shows the Scrollbar
Aug 23, 2017 04:16 PM|NJ2|LINK
In window.open for an aspx page; I have the property titlebar set to "no" but the page still shows the title. Also, how do I display this popup without displaying the url?
Who do I need to do to get it to work?
All-Star
50831 Points
9895 Posts
Re: Titlebar=no still shows the Scrollbar
Aug 23, 2017 05:41 PM|A2H|LINK
You might consider opening a popup window using Jquery dialog and then load the page
Aje
My Blog | Dotnet Funda
Contributor
2990 Points
1210 Posts
Re: Titlebar=no still shows the Scrollbar
Aug 24, 2017 02:47 AM|Deepak Panchal|LINK
Hi NJ2,
below is an example:
Note:-
some of the properties/ parameters are only supported in some of the browsers. so when you try to make a test with different browsers. you will notice that in some browsers some property is working and in other browser same property is not working.
Reference:
Window open() Method
Regards
Deepak
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.