inputFlag.src = country ? country.flag : '';
console.log(inputFlag.src); // РЕЗУЛЬТАТ https://fiddle.jshell.net/_display/
<input type="text" value="+7" id="inputcode">
inputCode.addEventListener('input', checkCountry);
window.onload = checkCountry;
function checkCountry() {
const country = countries.find(n => !this.value.indexOf(n.code));
inputFlag.src = country ? country.flag : '';
}
На будущее про меню.
1. В админке добавляется меню.
2. В function.php добавляется название меню theme_register_nav_menu()
3. Создал файл меню, скопировав текущий.
profit