insBif() Method
Inserisce nel DOM un elemento passato come paramentro prima dell'elemento o della collezione di elementi selezionati
// API dBJsDavide Bausach / 22-06-2015
Argomenti:
- [object] obj : elemento da inserire nel DOM
- [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="">append #</button>
Example 2
<button type="button" onclick="">append .</button>