remAt() Method
Rimuove un attibuto all'elmento o alla 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').remAt('myAttributeName');
//sintax for elements by class name
$D('.myElements').remAt('myAttributeName');
Example 1
<button type="button" onclick="">remAt #</button>
Example 2
<button type="button" onclick="">remAt .</button>

