Browse our comprehensive portfolio of directly listed properties within the beautiful northern Costa Blanca.
<script>
document.addEventListener('DOMContentLoaded', function () {
function updateUrl(queryString) {
// Get the current URL without query strings
var currentUrl = window.location.origin + window.location.pathname;
// Add the new query string
var newUrl = currentUrl + queryString;
// Update the browser URL
window.history.replaceState(null, null, newUrl);
}
document.querySelector('.preset-exclusive').addEventListener('click', function () {
updateUrl('?_exc=1');
});
document.querySelector('.preset-reduced').addEventListener('click', function () {
updateUrl('?_rr=1');
});
});
</script>