Guest User

Untitled

a guest
Mar 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function onmouseoverExample() {
  2. var myElement = document.getElementById("hoverExample");
  3. myElement.innerHTML = "This changed when you hovered over the element.";
  4. myElement.style.color = "red";
  5. }
  6.  
  7. function onmouseoutExample() {
  8. alert("This alert occured when you moved your mouse away from the element.");
  9. }
Add Comment
Please, Sign In to add comment