Buenos días tengo un script en donde tomo una foto por medio una cámara web, me funciona bien lo malo es que toma la foto con el evento click y quisiera que lo haga cuando oprima la tecla enter en una caja de texto
var shootEnabled = false;
$('#formulario').click(function(){
if(!shootEnabled){
return false;
}
webcam.snap();
togglePane();
return false;
});
$('#cancelButton').click(function(){
webcam.reset();
togglePane();
return false;
});
$('#formulario').click(function(){
webcam.snap();
webcam.reset();
togglePane();
return false;
});
camera.find('.settings').click(function(){
if(!shootEnabled){
return false;
}
webcam.configure('camera');
});
// Mostrar y ocultar el panel de la cámara:
var shown = false;
$('.camTop').click(function(){
$('.tooltip').fadeOut('fast');
if(shown){
camera.animate({
bottom:-466
});
}
else {
camera.animate({
bottom:-5
},{easing:'easeOutExpo',duration:'slow'});
}
shown = !shown;
});
$('.tooltip').mouseenter(function(){
$(this).fadeOut('fast');
});