Nieuw lid |
|
Hallo, ik heb het volgende scriptje geschreven, ik heb volgens mij alle mogelijke manieren al geprobeerd, maar ik kom er niet uit!
Hier heb ik de beste oplossing geplaatst(zo zou ie goed moeten werken imo).
function checkIP(newIP){
this.hostname = "";
this.IP='10.0.0.'+newIP;
this.openWindow();
}
checkIP.prototype.openWindow = function (){
this.win = window.open("testip.php?ip="+this.IP);
this.win.blur();
setTimeout("this.win.close();",1000);
}
testWindow = new checkIP('2');
function checkIP(newIP){ this.hostname = ""; this.IP='10.0.0.'+newIP; this.openWindow(); } checkIP.prototype.openWindow = function (){ this.win = window.open("testip.php?ip="+this.IP); this.win.blur(); setTimeout("this.win.close();",1000); } testWindow = new checkIP('2');
Iemand enig idee wat ik nu verkeerd doe?
|