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!");
})
});
by fido3993
<p id="hello">
If you click me, I will disappear
</p>
$(document).ready(function(){
$("#hello").mousedown(function(){
alert("Mouse Down over p tag!");
})
});