Touche entrer génère un clique
This commit is contained in:
parent
a6f2537b15
commit
b5f4cfc900
@ -2,6 +2,13 @@ $(function () {
|
||||
|
||||
/* ÉXECUTION DES FONCTONS */
|
||||
|
||||
// Touche entrer génère un clique
|
||||
$("body").keydown(function(e){
|
||||
if(e.which === 13){
|
||||
$(".btn").click();
|
||||
}
|
||||
});
|
||||
|
||||
$("#submitWeatherRequest").click(() => {
|
||||
const city = $('#cityName').val();
|
||||
const cityName = city.split(' ').join('+');
|
||||
|
Reference in New Issue
Block a user