A Tale of Backgrounds, Absolutes, mouseleave, and mouseenter
mouseleave is simple to understand:
Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element.
How hard could it be? http://jsfiddle.net/JP6aV/
$(function () {... [read more]
var output = $("#output");
$("#content")
.mouseenter(function (e) {
Submit a review:
Login required.