Ihor20121993,
"use strict";
var countries = {
es: ['AT', 'BG', 'GB', 'HU', 'DE', 'GR', 'ES', 'IT', 'CY', 'MK', 'NL', 'PL', 'PT', 'RO', 'RS', 'SK', 'SI', 'TR', 'FR', 'HR', 'CZ', 'CH', 'BE', 'IL', 'LV', 'LT', 'LU', 'NO', 'SE', 'EE'],
sng: ['RU', 'UA', 'BY', 'KZ', 'MD', 'KG', 'UZ', 'AZ', 'AM', 'TJ', 'TM', 'GE']
};
if (/\?currency/.test(location.href)) {
console.info('No, redi');
} else {
console.info('Yes, redi');
$.get("http://ipinfo.io?token=095f8dec39acee", function(response) {
if(countries.sng.indexOf(response.country) !== -1)
{document.location.href = '/?currency=RUB'
}
else if(countries.es.indexOf(response.country) !== -1)
{document.location.href = '/en?currency=USD' }
else
{ document.location.href = '/?currency=USD' }
}, "jsonp");
}