$(document).ready(function(){ if(document.location.hash=="#create_record"){ $(".modal_create_record").modal("show"); } $('.modal_create_record').on('shown.bs.modal', function () { document.location.hash = "create_record"; $(".activation-input").eq(0).focus(); }); $('.modal_create_record').on('hidden.bs.modal', function () { document.location.hash = ""; }); /*var numberOfInputs = $(".activation-input").length; $(".activation-input").each(function(index,d){ $(this).keyup(function(e){ if(e.keyCode == 13){ if(index==numberOfInputs-1){ $("#btn_create_record").click(); }else{ $(".activation-input").eq(index+1).focus(); } } }); });*/ generalAjaxFormProcess("#btn_create_record",".create_dialog_record","https://biflovac.cz/record/ajax/create.json.php"); });