Click here to Skip to main content
15,885,905 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi ,
how to hide address bar , scroll bar and status bar in aspx page when we run on mozilla and other browsers in popup page
Posted
Comments
Protechsoft 10-Feb-11 23:37pm    
http://windowopen.codeplex.com/

http://www.codeproject.com/Questions/156283/how-to-hide-address-bar-scroll-bar-and-status-bar-.aspx
Ganesh_mca 11-Feb-11 0:53am    
but it is not working in mozilla

 
Share this answer
 
v2
Open Method[^] will give you an idea.
 
Share this answer
 
C#
function NewWindow()
{
    top.window.open("http://www.google.com",'800x300','toolbar=no,scrollbars=no,resizable=yes,status=no,location=no,menubar=no,directories=no,width=800,height=300');
}
 
Share this answer
 
code:


function OpenResourcePage()
{

window.open('http://www.google.com','','toolbar=no, menubar=no, width=950,resizable=1,height=650, resizable=yes, scrollbars=yes, location=no');
return false;

}




Regard's
jagruti
 
Share this answer
 
v2
$( "id" ).hover(function() {
return true;
});
 
Share this answer
 
v2
Comments
CHill60 13-Mar-14 9:05am    
The question is more than 3 years old!

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