remAt() Method
Rimuove un attibuto all'elmento o alla collezione di elementi selezionati
// API dBJsArgomenti:
- [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>

