Veamos si este codigo te ayuda, espero y te funcione suerte saludos ...
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> <script type="text/javascript"> $(function(){
// $("#enlace").bind({
// mouseenter : function(){
// alert('Pasaste encima mio');
// },
// mouseleave : function(){
// alert('Me sacaste de tu camino O.o');
// },
// click : function(){
// alert('Me pinchaste salvaje <.<');
// $(this).unbind('mouseleave');
// return false;
// }
// })
$("#enlace").mouseenter(function(){
alert('Pasaste encima mio =P.');
}).mouseleave(function(){
alert('Me sacaste de tu camino O.o');
})
$("#enlace").live('click', function(){
alert('afff me pinchaste.. =D ... lol ');
$(this).unbind('mouseleave');
return false;
})
})
</script>
<a href="#" id="enlace">LiveMusic
</a>