PHP beginner |
|
Hoi,
Ik heb een script van in IE goed werkt, maar in FireFox niet.
function setLayer(text) {
if (text.indexOf("http://",0) <= 0)
text = "http://" +text;
alert("Test");
document.frames['myFrame'].location.href = text;
document.addrForm.location.value = text;
}
function setLayer(text) { if (text.indexOf("http://",0) <= 0) text = "http://" +text; alert("Test"); document.frames['myFrame'].location.href = text; document.addrForm.location.value = text; }
Dit stukje JavaScript voert die niet uit in FireFox.
Terwijl die de Alert wel laat zien.
Weet iemand een oplossing?
|