Update Paragraph After Click
Version 5a - First simple try.
Please click anywhere in this paragraph.
The concept explored here is making JavaScript change the contents of an existing paragraph, in place.
Key component:
document.getElementById('foo').innerHTML = 'Thank you!';
I'm just beginning to explore this idea. I'll need to explore "innerHTML" a bit more to understand.