jsQuiz bubbling

by David McClelland

HTML

<html>
    <body onclick="alert('document clicked')">
        <div onclick="alert('division clicked')">
            <input type="button" value="click me" onclick="alert('button clicked')">
        </div>
    </body>
</html>