Hola, quiero hacer clic con el botón derecho() en los mapas de Google para acercar y alejar la imagen. Hay alguna forma de hacer eso. He escrito el clic doble, pero ahora está trabajando con solo el clic izquierdo. Cualquier sugerencia sobre cómo hacer esto. Aquí está mi códigocómo agregar dbclick() al hacer clic con el botón derecho en jquery
$("div#demo1").dblclick(function(e) {
//alert(e.getElementById());
if((!$.browser.msie && e.button == 0) || ($.browser.msie && e.button == 1)) {
alert("Left Mouse Button was clicked on demo1 div!");
$("div.window").animate({
'height':'+=20', 'width':'+=20'
},0,function(){
jsPlumb.repaintEverything();
jsPlumb.repaintEverything();
});
// Left mouse button was clicked (all browsers)
}
else if((!$.browser.msie && e.button == 2) || ($.browser.msie && e.button == 3)) {
alert("right click double");
}
});
[jQuery normaliza] (http://api.jquery.com/category/events/event-object/) el valor del botón para 'e.which', no necesita el código de plomería. – Esailija
@Esailija: sí lo vi ahora. ¿Hay alguna manera de llamar al hacer doble clic y no con un solo clic? –