All I want to do is use this code: jsfiddle for an un-clickable button but I cant seem to embed the JS the way that i'm used to. I feel my problem is telling it what the img is. this is what i have.
<html>
<head>
<script>
jQuery(function($) {
$('#img').mouseover(function() {
var dWidth = $(document).width() - 100, // 100 = image width
dHeight = $(document).height() - 100, // 100 = image height
nextX = Math.floor(Math.random() * dWidth),
nextY = Math.floor(Math.random() * dHeight);
$(this).animate({ left: nextX + 'px', top: nextY + 'px' });
</script>
</head>
<body>
<div class="top">
<p>Yada yada yada.<p>
</div>
<img src="poop.png" width="100" height="100" alt="Grey Square" id="img" />
</body>
</html>