insBif() Method

Inserisce nel DOM un elemento passato come paramentro prima dell'elemento o della collezione di elementi selezionati

// API dBJs  

Argomenti:
      - [object] obj : elemento da inserire nel DOM

Standard sintax

    //sintax for element by id
    $D('#myElement').insBif($D('#myElement2').el);

    //sintax for elements by class name
    $D('.myElement').insBif($D('#myElement2').el);
  
Example 1

    <button type="button" onclick="$D('#myElement').insBif($D('#myElement2').el);">append #</button>
  
Example 2

    <button type="button" onclick="$D('.myElements').insBif($D('#myElement2_2').el);">append .</button>
  
Operazione eseguita con successo!