I have:
<html><head>
<script type="text/javascript" src="jquery-1.7.min.js"></script>
<script type="text/javascript">
$("#hoverit").one("mouseover", function(){
$("#tomato").append('t');
});
</script>
</head><body>
<div id="hoverit">hover over this</div>
<div id="tomato">mmm</div>
</body></html>
I’m trying to make a mouse hover do an action once only using the jquery one command and it’s not working…
Any ideas?
try :