htm() Method

Inserisce codice html all'interno dell'elmento o della collezione di elementi selezionati

// API dBJs  

Argomenti:
      - [string] val : codice html da inserire

Standard sintax

    //sintax for element by id
    $D('#myElement').htm('htmlText');

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

    <button type="button" onclick="$D('#myElement').htm('<h1>OK</h1>');">htm #</button>
  
Example 2

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