Hilfe bei windows.setTimeout

philishake

javascript enthusiast
Warum gibt er die im PHP Script net aus, habe sie korrekt mit GET emfpangen, mit PHP kenne ich mich super aus, daran liegts es nicht, aber mit JS ahab eich so meien probs

Code:
document.write(screen.width + " x " + screen.height)

b = screen.width
c = screen.height

 window.setTimeout("document.location.href='blub.php?b=screen.height&c=screen.height',5000")

danke schon ma für eure hilfe
 
Ein Blick in eine JavaScrpt-Konsole (sowas hat jeder Browser) haette dir gezeigt, dass dein Syntax vollkommen falsch ist. So waere es richtiger:
Code:
window.setTimeout("document.location.href='blub.php?b='+screen.width+'&c='+screen.height'",5000)
 
@con-f-use:

Öhm...

...auch nich ganz...

aber so:
Code:
window.setTimeout("document.location.href='blub.php?b=" + screen.width + "&c=" + screen.height + "'", 5000)

Gruß, C]-[aoZ
 

Neue Beiträge

Zurück