JavaScript Event

  1. <!DOCTYPE html>  
  2. <html>  
  3. <body>  
  4.   
  5. <button onclick="getElementById('time').innerHTML=Date()">The time is?</button>  
  6.   
  7. <p id="time"></p>  
  8.   
  9. </body>  
  10. </html>