I need not to focus on readonly input and when user tab it should jump to next write field.
<input type="text" name="first"></input>
<input type="text" name="second" readonly="readonly"></input>
<input type="text" name="third"></input>
<input type="text" name="fourth"></input>
<input type="text" name="fifth" readonly="readonly"></input>
<input type="text" name="sixth"></input>
<script>
$(document).ready( function(){
$('input').focus(function(e) {
var readonly = $(this).attr("readonly");
if (readonly) {
$(this).next('input:not([readonly])').focus();
e.preventDefault();
}
});
});
</script>