A Jquery click event is not fired with the right mouse button, only with the left one! Is there an explanation and a solution for that?
<textarea name="message" id="message"></textarea>
$("#message").on('click', function(event) {
alert("ok");
});
Thank you