Как изменить путь к файлу в скрипте (папка/file)
$('select').on('change', function() {
fileGet($(this).val());
});
function fileGet(file) {
file = file + ".php";
console.log(file);
$.ajax({
url: file,
cache: false,
success: function(html) {
$("#container").html(html);
}
});
}
Продвижение своими сайтами как стратегия роста и независимости