“Ctrl+/”
“F11/ESC”
<!DOCTYPE html>
<html>
<head>
<script>
function myFunction(e)
{
alert(e.bubbles);
}
</script>
</head>
<body>
<p onclick="myFunction(event)">Click this paragraph. An alert box will tell if the event is a bubbling event.</p>
</body>
</html>