How I can prevent hiding keyboard with jquery

49 Views Asked by At

I want to avoid hiding keyboard when user even submit the form(like whatsapp or facebook).I use this code but it doesn't work.

$(document).on("click touchstart touchend",".mes-send-text",function(){
$(".mes-tbox").focus();
})
//.mes-send-text is button
//.mes-tbox is textarea
0

There are 0 best solutions below