let connectorForm = document.getElementById("connectorform"); connectorForm.addEventListener("submit", (e) => { e.preventDefault(); let nextURL = new URL(window.location.href); let connectorName = document.getElementById("cname").value; nextURL.searchParams.append("connector_id", connectorName) window.location.href = nextURL; });