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
What is http request and response?
Explain diff between dataset and datareader?
How to Insert/Add in ASPXgridview
What is the life cycle of web page?
What is viewstate? In which event of the page life cycle, is the viewstate available?
Which dll handles the request of .aspx page?
Explain the function of new view engine in asp.net? : asp.net mvc
How to turn off cookies for a page?
What is difference between Lambda Expression and LINQ in ASP.NET?
What is simple data binding?
Is it right that ASP.NET Web API has replaced WCF?
What is the difference between system.stringbuilder and system.string
What is web router?
Is there any limit for query string? Means what is the maximum size?
Can we set which type of comparison we want to perform by the CompareValidator control?