Hallo
Ich habe da ein Problem mit dem IE6.
$.frameReady(function(){
statusClone = 'test';
$(statusClone).prependTo("body");
},"top.stts");
Ich habe eine Variable statusClone und möchte diese zu dem Frame mit dem Namen "stts" hinzufügen. IM FF klappts, im IE nicht! Wie immer...
Folgender Code klappt auch im IE
$.frameReady(function(){
$('<DIV>text</DIV>').prependTo("body");
},"top.stts");
also liegts irgendwie nur dadran, dass variblen ausserhalb des $.frameReady-Plugins nicht akzeptiert werden im IE. und die Frage lautet
Warum? - Was mach ich falsch?
Tino Klanz