0
event handler
how can i get recently pressed key by using jQuery event handler
1 ответ
0
Use key function
$(document).ready(function(){
$("input").keyup(function(){
$('div').html(event.target.value);
});
Hope it will helpful to you.
Thanks!