ADD YOUR BUSINESS

Add your company to Turkey’s largest online business directory.

Submit short company info, be found more easily. Increase your online presence and grow your business.

const form = document.forms['yp-modal-add-company-form']; const formToJSON = elements => [].reduce.call(elements, (data, element) => { data[element.name] = element.value; return data; }, {}); form.addEventListener('submit', (e) => { e.preventDefault(); const data = formToJSON(form.elements); console.log({data}); const jdata = JSON.stringify(data); console.log({jdata}); fetch('http://yellowpages.com.tr/firma-ekle', { method: "POST", body: JSON.stringify(data), headers: { "Content-Type": "application/json" }, credentials: "same-origin" }).then(function(response) { response.status //=> number 100–599 response.statusText //=> String response.headers //=> Headers response.url //=> String return response.text() }, function(error) { error.message //=> String }) return false })