<div id="message" class="">
<textarea id="message_input" name="message" class="inactive" data-value="Bericht..."></textarea>
<span class="settings"></span>
<div id="message_send"><i class="fa fa-paper-plane-o"></i></div>
</div>
$("#message_send").click(function(){
//not doing anything yet
});
When I focus on the textarea, a virtual keyboard appears on mobile devices as it should. However, when "clicking" the #message_send
button it should stay and not hide. How can I prevent the keyboard from hiding without having to lose the jQuery click event?