Hello,
What is wrong with this jquery code, the error received on IE is
Message: Expected ';'
Line: 10
Char: 10
All I want is to move the mouse over and have an alter pop-up
<script language="javascript" type="text/javascript">
$(document).ready(function() {
$('#t').bind('onmouseover',function(){
target: '#t',
success: function(){
alert('test');
}
});
});
</script>
<div id="t">testing mouse over</div>
Thanks Dave