chellas88,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
[].forEach.call(document.querySelectorAll('div'), function(node) {
node.addEventListener("mousedown", function(event) {
if(event.which == 3) {
event.preventDefault();
alert(node.id);
}
})
});
});
</script>
</head>
<body>
<div id="1">ТЕкст1</div>
<div id="2">ТЕкст2</div>
</body>
</html>