I\'m having trouble with the field when running my application on iPad.
On the desktop you click on the text box, type the text in and cl
When you dynamically create an input or load html after the document.ready call, the jQuery .live() function is the ticket.
So whereas normally you would have a function like this:
$(function () {
$('#text1').on('keyup', function() {
// do something
})
})
would become:
function doSomething() {
// do something
}
$(function () {
$('#text1').live('keyup', doSomething);
})