Código:
$("#telefono").mousedown(function (e) {
if(e.which==3)
{
alert("Por motivos de seguridad la hemos bloqueado");
e.preventDefault();
}
});
no sabia que se tenia que trabajar con ese evento. 

