TOM: Kann Mozilla nur ne gewisse Menge Javascripte?

Beitrag lesen

hi ho :) (<- begrüßung @ Stefan Einspender sfg)

sagt mal kann das sein dass der mozilla v1.1 ab ner gewissen menge JavaScript-Text zwischen <Script> und </script> aussteigt und das als text einfach ausgibt???

hab ein vertiges programm - teste mit mozilla normal net so viel, wollts aber grad mal anschaun - siehe da geht net weil er die javascripte net alle durchlässt - hä???

genau bei dem ausschnitt des quelltextes steigt er irgendwo aus und postet es als text:

""""""""""""
  function set_trend(){
        var wert =
document.applt.f_trend.options[document.applt.f_trend.options.selectedIndex].value;
        document.image1.conf_trend(wert);
    }
    function set_rst(){
        var wert =
document.applt.rst_id.options[document.applt.rst_id.options.selectedIndex].value;
        document.image1.conf_rst(wert);
    }
    function listsdel(wert){
        for(var i = document.applt.f_trend.length-1; i>=0; i--) {
            document.applt.f_trend.options[i] = null;
        }
        for(var i = document.applt.rst_id.length-1; i>=0; i--) {
            document.applt.rst_id.options[i] = null;
        }
    }
    function lists_sign(wert){
"""""""""""""""

danke für eure help

TOM