N
Netzwerkidi
Hallo,
weiß jemand, wie man ein Script aus einem HTML-File selektiert und möglichst ohne eval() ausführt?
Ich habe zwei Files:
File 1: http://jsfiddle.net/KReLL/
File 2: http://jsfiddle.net/D54uw/
Thx!
weiß jemand, wie man ein Script aus einem HTML-File selektiert und möglichst ohne eval() ausführt?
Ich habe zwei Files:
File 1: http://jsfiddle.net/KReLL/
Code:
<script id="js001">$('body').append('<p>Script 1</p>');</script>
<script id="js002">$('body').append('<p>Script 2</p>');</script>
<script id="js003">$('body').append('<p>Script 3</p>');</script>
File 2: http://jsfiddle.net/D54uw/
Code:
$(document).ready(function () {
$('head').lade und führe script 2 aus ('http://jsfiddle.net/KReLL/ #js002');
});
Thx!