I am one hell of a guy, I can do anything I want, only I just don't have the faintest idea what.
Zaphod Beeblebrox, in The Hitch Hiker's Guide To The Galaxy
Ah juist.. bij JS denk ik ook nog aan webscripting & programming.. maar dat had ik dus fout.. Sorry ACM!Op maandag 01 juli 2002 13:24 schreef ACM het volgende:
P&W -> W&G
I am one hell of a guy, I can do anything I want, only I just don't have the faintest idea what.
Zaphod Beeblebrox, in The Hitch Hiker's Guide To The Galaxy
Privacy-adepten vinden op AVGtekst.nl de Nederlandse AVG-tekst voorzien van uitspraken en besluiten.
window.open levert prcs hetzelfde op..Op maandag 01 juli 2002 13:27 schreef Prammenhanger het volgende:
this.open? nooit van gehoord. window.open wel
I am one hell of a guy, I can do anything I want, only I just don't have the faintest idea what.
Zaphod Beeblebrox, in The Hitch Hiker's Guide To The Galaxy
/edit:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script>
function displayList() {
var popwin = this.open (
'404.html',
'bla',
'width=250,height=300');
popwin.focus();
alert("blieb");
}
</script>
</head>
<body>
<INPUT type=button onClick=displayList()>
</body>
</html> |
Geen geneuk over rag-html, geen zin om op het kwastje van homesite te drukken
* Thijsmans heeft nl. vakantie
Privacy-adepten vinden op AVGtekst.nl de Nederlandse AVG-tekst voorzien van uitspraken en besluiten.
zet alles 'ns op 1 regel...Netscape bijvoorbeeld houdt zowiezo niet van linespan-ing.
Hij stond ook op 1 regel.. Ik heb hem uit elkaar gahaald om te kijken waar de fout zat.Op maandag 01 juli 2002 13:34 schreef Hangloozz het volgende:
hier werkt ie ook gewoon (W2K, IE5)
zet alles 'ns op 1 regel...Netscape bijvoorbeeld houdt zowiezo niet van linespan-ing.
Ik heb zelf W2K en IE 5.5..
NS doetet hier ook, net als Mozilla dus..
Alleen IE is raar bezig
I am one hell of a guy, I can do anything I want, only I just don't have the faintest idea what.
Zaphod Beeblebrox, in The Hitch Hiker's Guide To The Galaxy
<INPUT TYPE="button" CLASS="button" NAME="list" VALUE="List" onClick="displayList();">
Prammenhanger, jouw script werkt bij mij ook in IE..
Wazig..
En als je een extern script maakt? Ook zeker?
I am one hell of a guy, I can do anything I want, only I just don't have the faintest idea what.
Zaphod Beeblebrox, in The Hitch Hiker's Guide To The Galaxy
probeer dit eens:
1
2
3
4
5
6
7
8
9
10
11
| var popwin;
function displayList() {
popwin = window.open (
'404.html',
'bla',
'width=250,height=300'
);
popwin.focus();
alert("blieb");
} |
Music is the pleasure the human mind experiences from counting without being aware that it is counting
~ Gottfried Leibniz
Geprobeerd.. het maakte helaas geen verschil
Kan het iets te maken hebben, met het feit dat het in een extern script staat?
I am one hell of a guy, I can do anything I want, only I just don't have the faintest idea what.
Zaphod Beeblebrox, in The Hitch Hiker's Guide To The Galaxy
Lijkt me stug... Zou je even wat meer source kunnen posten (even de omgeving van alles wat je al verteld hebt). Misschien zit de fout wel ergens waar je het nooit verwacht hadFuncracker:
DRM: drm
Geprobeerd.. het maakte helaas geen verschil
Kan het iets te maken hebben, met het feit dat het in een extern script staat?
Music is the pleasure the human mind experiences from counting without being aware that it is counting
~ Gottfried Leibniz
1
2
3
4
5
6
7
8
9
10
11
| var popwin;
function displayList() {
popwin = window.open (
'404.html',
'Physicians List',
'width=250,height=300');
popwin.focus();
alert("blieb");
return true;
} |
index.html:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <HTML>
<HEAD>
[..]
<BODY>
[..]
<SCRIPT LANGUAGE="javascript" SRC="./scripts/general.js"></SCRIPT>
[..]
<TR>
<TD heigth="30" CLASS="input">ID</TD>
<TD height="30" CLASS="input" align=left>
<INPUT TYPE="text" CLASS="text" NAME="phys" SIZE="5" MAXLENGTH="5" VALUE="{PID}"></INPUT>
<INPUT TYPE="button" CLASS="button" NAME="list" VALUE="List" onClick="displayList()"></INPUT>
</TD>
<TD width="175" heigth="30" CLASS="input"> </TD>
</TR>
[..]
</BODY>
</HTML> |
Zo ziet het er ongeveer uit
I am one hell of a guy, I can do anything I want, only I just don't have the faintest idea what.
Zaphod Beeblebrox, in The Hitch Hiker's Guide To The Galaxy
't is niet verplicht (dacht ik
Probeer die alert("blieb"); eventjes in het .js bestandje te zetten. Als je die alert krijgt, weet je iig zeker dat het bestand geladen wordt.
Music is the pleasure the human mind experiences from counting without being aware that it is counting
~ Gottfried Leibniz