merhaba arkadaşlar
enter tuşu ile giriş yapmıyor giriş butonuna tıklayınca giriş oluyor bunu sebebi ne olabilir
enter girişi ile login yapamıyorum |
5 Mesajlar | 1.024 Okunma |
$(document).ready(function() {
$('#inputornek').keydown(function(event) {
if (event.keyCode == 13) {
this.form.submit();
return false;
}
});
});
$('.pwd').keydown(function (e){
if(e.keyCode == 13){
var data = new FormData($('#login_form')[0]);
$.ajax({
url: "kor/sys/reg-log-for/login.php?proc=Login",
type: "POST",
data: data,
async: false,
cache: false,
contentType: false,
processData: false,
success: function(result) {
$("#alert").html(result).hide().fadeIn(500);
}
});
}
});