Jquery Mouse Down Function

by fido3993

HTML

<p id="hello">
If you click me, I will disappear
</p>

JavaScript

$(document).ready(function(){
	$("#hello").mousedown(function(){
  alert("Mouse Down over p tag!");
  })
});