A Tale of Backgrounds, Absolutes, mouseleave, and mouseenter

Posted by K. Scott Allen (OdeToCode.com) on August 18, 2011

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 () {
var output = $("#output");
$("#content")
.mouseenter(function (e) {
... [read more]

Rating

not rated

Reviews

There are currently no comments or reviews.

Submit a review:

Login required.