Skip to content

Instantly share code, notes, and snippets.

@markis
Last active December 26, 2015 17:08
Show Gist options
  • Save markis/7184481 to your computer and use it in GitHub Desktop.
Save markis/7184481 to your computer and use it in GitHub Desktop.
var $hoveredSwatch = $("#hoveredSwatch");
var $selectedSwatch = $("#selectedSwatch");
$("area").hover(
function() {
var altText = $(this).attr("alt");
$hoveredSwatch.html(altText);
},
function() {
$hoveredSwatch.html("");
}
).click(
function() {
var altText = $(this).attr("alt");
$selectedSwatch.html(altText);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment