I want to do a MouseOver for the #AboutButton. But the alert does not pop up. Any clue to why and how to do it.
–js code
$(document).ready(function() {
$('#AboutButton').mouseover(function() {
alert('test');
});
});
–html code
<div id="Menu">
<span id="HomeButton">Home</span>
<span id="ButtonSeparator01"> </span>
<span id="AboutButton">About</span>
</div>
Hiya demo http://jsfiddle.net/m5sE2/ (copying as we discussed in the comments above)
Have a nice one bruv!
jquery code