Archívum - Okt 17, 2004
JS: window.open() + IE
az alábbi kódom van:és így hívom meg:firefoxban tökéletesen megy, de IE-ben nem akar... ha lecsupaszítom egy szimpla window.open("http://index.hu","index.hu");-ra, akkor is hibát jelez. valakinek esetleg tippje?
■
function openWindow(title,url,width,height) {
window.open(url, title, "innerWidth=" + width + ", innerHeight=" + height + ", resizable=no, menubar=no, toolbar=no, scrollbars=no, location=no, status=no");
}
<a href="#" onClick="openWindow('index.hu','http://index.hu/',400,800)"><img src="/images/test.jpg" alt="Teszt" width="146" height="100"></a>