rem() Method
Rimuove dal DOM un elmento o una collezione di elementi selezionati
// API dBJs
Davide Bausach
/ 15-05-2015
Argomenti:
- [string] attr : nome attibuto
- [string] attr : nome attibuto
Standard sintax
//sintax for element by id
$D('#myElement').rem();
//sintax for elements by class name
$D('.myElements').rem();
Example 1
<button type="button" onclick="">rem #</button>
Example 2
<button type="button" onclick="">rem .</button>

