I am running my asp.net application on safari in Ipad,I want to disable parent window when any pop up window is opened. For this I was using..
window.showModalDialog("Questions.aspx?store=" + Store + "&auditDate=" + AuditDate + "§ion=" + SectionId, "", "dialogHeight:750px; dialogWidth:950px;center:yes;edge:raised; Scroll:Yes; ");
But showModalDialog() method was not working in safari Browser in Ipad,so I am using window.open() function.But functionality of showModalDialog() has been lost.
Please let me , How to disable parent window when Pop window is opened , and let me know any alternative way to achieve this functionality without using showModalDialog() Method , to work in all Browser without compatiblity issues with Browser.