window.close() javascript method doesnt work in phonegap for iOS
Im trying to close a popup window that has been opened using window.open() in my phonegap app being developed on iOS. But the window.close method doesnt work when Im trying to close the newly opened p开发者_StackOverflowopup window. Although it works fine in normal web browsers, how can i make it work on the iphone simulator or atleast will it work on the final app deployed?
tried alternate trick - window.open('','_parent');window.close(); too but to no use.
精彩评论