Я не уверен, в чем ваша проблема, но помогает ли приведенный ниже код?
const btn = document.querySelector('.btn')
const country = document.querySelector('.input-text')
btn.addEventListener('click', getTogether)
function getTogether(event) {
event.preventDefault()
getChart(country.value)
getGlobal(country.value)
}
function getChart(country) {
console.log("getChart called with:", country)
}
function getGlobal(country) {
console.log("getGlobal called with:", country)
}
<input type="text" class="input-text" />
<button class="btn">Click Me</button>