Thread iFrame WYSIWYG (9 answers)
Opened by Froschpopo at 2008-04-27 15:57

Froschpopo
 2008-04-28 20:52
#108958 #108958
User since
2003-08-15
2653 Artikel
BenutzerIn
[default_avatar]
Ich habe das Problem jetzt so weit wie möglich zurückverfolgt bis ich am Ende nur noch ein 3-Zeilen-JavaScript hatte:

Beispiel 1: (funktioniert nicht)
Code: (dl )
1
2
3
4
5
<script type="text/javascript">
$(document).ready(function () {
$('body').load(function () { alert("funktioniert NICHT") });
});
</script>


Beispiel 2: (funktioniert)
Code: (dl )
1
2
3
4
5
6
7
8
9
10
<script type="text/javascript">
$(document).ready(function () {
alert("funktioniert!");
$('body').load(test);
});

function test () {
alert("hallo welt");
}
</script>


Ich versteh die welt nicht mehr :(
Wieso funktioniert Beispiel 1 nicht?

View full thread iFrame WYSIWYG