Ik wil een radio creeren met JS...het creeren gaat goed, het displayen ook...maar de radio is waardeloos! Ik kan er wel op klikken maar er gebeurt niks 
Let wel: IE only...Mozilla, NS en Opera 7 doen het wel...
Iemand een verklaring of is het inderdaad een bug?
Let wel: IE only...Mozilla, NS en Opera 7 doen het wel...
PHP:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <html> <head> <title>ohnee!</title> <script type="text/javascript"> <!-- function initall() { var oInput = document.createElement('input'); oInput.setAttribute('type','radio'); document.getElementById('f1').appendChild(oInput); } //--> </script> </head> <body onload="initall()"> <form id="f1"></form> </body> </html> |
Iemand een verklaring of is het inderdaad een bug?