Meet Our St. Louis Landscape Design and Installation Team
We call ourselves Oasis All-Stars because we shine bright as landscaping leaders in our community! When you work with Quiet Village Landscaping, you gain valuable insights from our team of industry pros.
Our award-winning outdoor experts care about the environment, using technology and training to bring the very best in environmentally friendly landscaping practices to every landscape design, construction, and outdoor maintenance project. We’re also committed to community action, as active members and supporters of Grow Native, Forest ReLeaf of Missouri, EarthWays Center – Missouri Botanical Garden, Bring Conservation Home, and more.
// Function to get URL parameter by name
function getParameterByName(name) {
name = name.replace(/[\[\]]/g, "\\$&");
var url = window.location.href;
var regex = new RegExp("[?&]" + name + "(=([^]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return '';
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
// Wait for the DOM to fully load
document.addEventListener('DOMContentLoaded', function() {
// Populate hidden form fields if they exist on the page
var utmFields = ['utm_campaign', 'utm_source', 'utm_medium', 'utm_content'];
utmFields.forEach(function(field) {
var value = getParameterByName(field);
var input = document.querySelector('[name="' + field + '"]');
if (input && value) {
input.value = value;
}
});
});