Without the given code example, this is hard to say, but you can try to register the click handler in the first field, and then focus the second field in it, and then the first field again, which in jQuery will look something like this:
$('#first_field').on('click', function(){ $('#second_field').focus(); $('#first_field').focus(); });
Most likely, this will not work, but it is worth a try. Otherwise, you will have to start messing with your CSS and positioning. Unfortunately, in some cases WebKit on iOS is a mistake when it comes to moving and scaling a window to display input fields and a keyboard.
source share