When I call window.open() from JavaScript, I get the error dialog with the message "Line: xxx Error: No such interface supported"

Google leads me to websites referring as far back as IE4 saying that I need to run regsrvr32 on several DLLs.

Is there a better solution?

EDIT: exact code requested

<html><head>
<script type="text/javascript">
function windowOpen() {
    window.open("http://localhost/mysite/mypage.asp", "myWindowName", "");
}
</script></head>
<body>
<button onclick="windowOpen();return false;">Hi There</button>
</body></html>

EDIT2: The provided answers all go back to IE4/Win95 days. I mean, seriously?? Regardless, I disabled Smooth scrolling in IE8 (!!!) and also attempted to register the controls listed in the kb article mentioned by Shoban, but got an error attempting to register shdocvw.dll (The module "shdocvw.dll" was loaded but the entry-point DllRegisterServer was not found. Make sure that "shdocvw.dll" is a valid DLL or OCX file and then try again.)

link|improve this question

71% accept rate
1  
Can you show the exact line that gives you this error? – Török Gábor Jun 1 '09 at 16:41
1  
Works fine for me in IE8 (?) – Shoban Jun 1 '09 at 17:00
feedback

3 Answers

Well, I don't think there is a better solution. Searching for "No such interface supported" window.open gives me hundred thousands of results pointing to the same problem. They all say that the problem is a registry entry was corrupted, so the problem is locally and the same code would not affect other machines.

link|improve this answer
feedback

Works fine with me in IE8. Seems like a Video adapter issue. Check this support page from MS too.

link|improve this answer
feedback

Check if there are any toolbar installed. I had the same problem and this caused because I run fiddler http debugging proxy

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.