prevent iphone default keyboard when focusing an <input>

Toni Michel Caubet picture Toni Michel Caubet · Sep 30, 2011 · Viewed 123.3k times · Source

this is how i'm trying

<script type="text/javascript">
     $(document).ready(function(){
        $('#dateIn,#dateOut').click(function(e){
            e.preventDefault();
        }); 
     });
</script>

but the input stills 'launching' iphone's keyboard

ps: i want to do this because i'm using datepicker plugin for date

Answer

Rene Pot picture Rene Pot · Sep 30, 2011

By adding the attribute readonly (or readonly="readonly") to the input field you should prevent anyone typing anything in it, but still be able to launch a click event on it.

This is also usefull in non-mobile devices as you use a date/time picker