Is it possible to disable the minimized icon of a popup
window using window.open. Not using iframe concept?
Answer Posted / vaibhav telange
Yes,It possible to disable the minimize icon of a popup
window using following javascript....
window.open(url,
name,
'width=' + w + ', height=' + h + ', ' +
'left=' + wleft + ', top=' + wtop + ', ' +
' +
'minimize=no');
| Is This Answer Correct ? | 1 Yes | 26 No |
Post New Answer View All Answers
Explain what is an abstract class?
i want the asp.net technical questions and answeres
How can we inherit a static member?
I have an external link in my application say www.xyztest.com. Today this site works on http protocal. Tommorow it may run on https. So i cant hardcore the protocal in the site. When a user clicks on the link how can i know if the external site works on http or https and takes him to that place?
How can you display all validation messages in one control?
What is directive in asp net?
what are the security certificates used in webservices?
What does it mean your session has timed out?
How many types of cache are there?
What are the advantages of asp.net?
Can we have a web application running without web.config file?
How to reduce the width of textbox in editcommandcolumn of datagrid?
What are web beacons used for?
What is data grid view in asp.net?
Explain the difference between server.transfer and response.redirect? Why would I choose one over the other?