$('.wh-name-form-word').on('keyup input',function() {
var text = $(this).val();
if ( text == ""){
$(".wh-name-form-list").hide();
} else {
var url = location.protocol + "//" + location.host + "/attending/heritage/phpsc/ajax_name_list.php?text="+text;
$.ajax({url: url,dataType: 'html',success: function(data) {
$('.wh-name-form-list').html(data);
if (data != "") {
$(".wh-name-form-list").show();
$('.wh-name-form-list-item').on('click', function () {
$('.wh-name-form-word').val($(this).html());
$('.wh-name-form').attr('action', $(this).data('url'));
$(".wh-name-form-list").hide();
location.href='#search_name';
var pos = $(window).scrollTop();
console.log(pos);
console.log($('nav').outerHeight());
$(window).scrollTop(pos-$('nav').outerHeight());
});
} else {
$(".wh-name-form-list").hide();
}
}});
}
});
$( '.wh-name-form').submit(function(event){
var action = $(this).attr('action');
if ( action == ''){
return false;
}
});