togCl() Method

Aggiunge e rimuove una classe all'elmento o alla collezione di elementi selezionati

// API dBJs  

Argomenti:
      - [string] val : nome classe

Standard sintax

    //sintax for element by id
    $D('#myElement').togCl('myClass');

    //sintax for elements by class name
    $D('.myElements').togCl('myClass');
  
Example 1

    <button type="button" onclick="$D('#myElement').togCl('myClass');">togCl #</button>
  
Example 2

    <button type="button" onclick="$D('.myElements').togCl('myClass');">togCl .</button>
  
Operazione eseguita con successo!