test IE mouseenter button

by murgiaMarco

HTML

<button #button onmouseenter="testButton(this)"><label #label>test</label></button>

JavaScript

function testButton(x) {
  x.style.backgrount = "yellow";
}

function normalImg(x) {
  x.style.height = "32px";
  x.style.width = "32px";
}