tropenberta: remove und IE

hi leuts

ich entferne in einer function mit

  
  var input_folder = document.getElementById("pElement"+i2+fid2);  
  input_folder.remove();  

ein element. mozilla klappt das super.

aber ie meckert wegen remove. weis jemand rat.

lg
micha

  1.   
    document.getElementById("pElement"+i2+fid2).remove();  
    
    

    besser so ^^

  2. Hallo,

    remove ist eine Methode aus der DOM-4-Spezifikation. Die implementiert IE noch nicht.

    http://www.w3.org/TR/dom/#dom-childnode-remove
    http://dom.spec.whatwg.org/#dom-childnode-remove
    https://developer.mozilla.org/en-US/docs/Web/API/ChildNode.remove

    Seit DOM 1 funktioniert:

    element.parentNode.removeChild(element)

    Mathias

    1. hi Mathias

      danke für deine antwort.

      werd ich mal testen.

      schönen sonntag noch.

      lg
      micha