Hover me!
Move your mouse cursor over Box #5 and see how anything else on this page becomes dimmed.
This is the complete Javascript source code:
$(function() {
$('#actionBox')
.mouseenter(function() {
$(this).dimBackground();
})
.mouseleave(function() {
$(this).undim(); // Note: We could also use `$.undim();`
});
});