<button class="btn btn-big btn-primary" id="geolocateMe" type="submit">Goooo!</button>
Please how in JS I can change the Goooo! value into a button ?
I've tried:
document.getElementById('geolocateMe').value = "Test";
Thanks.
Your goal is to change the text of the button?
document.getElementById('geolocateMe').innerText = "Test";