0

how to hide keyBoard if textfield tap in mobile

using javascript

i have in trouble for resolve it

i just use this line to avoid keyboard

<script type="text/javascript">
function hideAndroidKeyboard() {
    Android.hideKeyboard();
}
</script>

but i want to hide keyboard from all devices

Star Lite
  • 11
  • 1

1 Answers1

1

just blur the focus on screen by using this

$(document.activeElement).filter(':input:focus').blur();

for better assistance: go here

Sazid Iqabal
  • 339
  • 1
  • 17