Yet Another IE7 Bug

IE7 didn’t execute a window.open command in some JavaScript code I’ve written. The code looks like

function popup() {
/* some vars */
window.open(url, “Name with some spaces”, params);
}

This always resulted in a IE7 runtime error, giving me absolutely no information about what really went wrong. Firefox opened that very window without any hassle (and every other browser too, even IE6). That problem can be solved by removing the spaces in the popups name:

function popup() {
/* some vars */
window.open(url, “Namewithoutspaces”, params);
}

Can somebody kill that browser? Thanks in advance.

Ähnliche Einträge

About maze