JavaScript:
1
2
3
4
5
6
7
8
| function Test(sTest) { alert(sTest); setTimeout('Test(' + sTest + ')', 1000); } Test('Dit is een test.'); |