diff --git a/public/static/js/geolocation.js b/public/static/js/geolocation.js
index 985c15c1edd8a9a8b2b835f35b056420eeb0cf76..064e9f57da0fa56548033ea28d57a3e454856aa4 100644
--- a/public/static/js/geolocation.js
+++ b/public/static/js/geolocation.js
@@ -62,7 +62,7 @@ $(document).ready(function() {
 	};
 
 	const processLocation = function(loc) {
-		const backend = $('div.geolocation > button').data('backend');
+		const backend = $('div.geolocation').data('backend');
 		$.post('/geolocation', {lon: loc.coords.longitude, lat: loc.coords.latitude, backend: backend}, processResult);
 	};