Skip to content

Instantly share code, notes, and snippets.

@elizabethsiegle
Last active June 2, 2016 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elizabethsiegle/ca8c94794d5c3cd75e9ecce0e7d7a21f to your computer and use it in GitHub Desktop.
Save elizabethsiegle/ca8c94794d5c3cd75e9ecce0e7d7a21f to your computer and use it in GitHub Desktop.
legend: {
show: true,
item: {
onmouseover: function(id) {
if(id== "Curry") {
document.getElementById('hoverImg').innerHTML = "<img src='img/curry.png' border=0/></a>";
document.getElementById("hoverImg").style.transitionDuration = "10s";
}
onmouseout: function(id) {
if(id== "Curry") {
document.getElementById('hoverImg').innerHTML = " ";
document.getElementById("hoverImg").style.transitionDuration = "10s";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment