Text inputs

Home Search

Text inputs

Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

 
$( ".selector" ).bind( "change", function(event, ui) {
  ...
});

The text input plugin has the following custom events:

create triggered when a text input is created

$( ".selector" ).textinput({
   create: function(event, ui) { ... }
});