Ginger Dunn Wendy Wilmot Properties 6 E Merchants Row Bald Head Island, Nc 28461
Local Top Producer
Residential Real Estate Expert
Ginger began her career on the Island in 1994 and was a top producer for BHI Ltd. — where she was Salesperson of the Year as well as a member of the Captain’s, Admiral’s and Commodore’s clubs for career achievement. She has built strong, loyal relationships with her clients and is known for her infectious laugh, vivacious personality and tremendous knowledge of BHI real estate.
Originally from Birmingham, Alabama , Ginger attended The University of Alabama and had a successful career with a children’s clothing manufacturer. Ginger’s husband David is a metallurgical engineer and has his own consulting firm. Their son, daughter-in-law and two grandsons, Gus and Charlie, live in Thomasville, Georgia. If you want to see Ginger smile, ask her about Gus and Charlie!
“Ginger Dunn is simply the best agent on Bald Head Island. Through the years, we have worked with her as both the buyer and the seller. She is knowledgeable, hard working, and professional. We can attest that Ginger goes the extra mile for her clients.” — Client Review
“Ginger is remarkable! She is always available, responds readily to emails and phone calls. She truly seems to have your best interest at heart and strives to make it happen whether you are buying, selling or adjusting your mortgage….we highly recommend her!” — Client Review
How can Ginger Dunn help?
document.addEventListener("DOMContentLoaded", function () {
var searchInput = document.querySelector(".dataTables_filter input");
var table = document.querySelector(".dataTable");
if (!searchInput || !table) return;
function normalize(str) {
return str.toLowerCase().trim();
}
function updateServingCity() {
var query = normalize(searchInput.value);
// Remove old labels
var existing = document.querySelectorAll(".serving-city");
for (var i = 0; i !== existing.length; i++) {
existing[i].parentNode.removeChild(existing[i]);
}
if (!query) return;
var rows = table.querySelectorAll("tbody tr");
for (var r = 0; r !== rows.length; r++) {
var row = rows[r];
var cityCell = row.cells[2]; // Address 1 - City
var stateCell = row.cells[3]; // Address 1 - Region
var boostCell = row.cells[7]; // Search Boost (hidden)
if (!cityCell || !stateCell || !boostCell) continue;
var primaryCity = normalize(cityCell.textContent);
var state = stateCell.textContent.trim();
var boost = normalize(boostCell.textContent);
if (boost.indexOf(query) !== -1 && primaryCity.indexOf(query) === -1) {
var card = row.querySelector(".agent-card");
if (!card) continue;
var div = document.createElement("div");
div.className = "serving-city";
div.textContent = "Serving " + searchInput.value + ", " + state;
card.appendChild(div);
}
}
}
searchInput.addEventListener("input", updateServingCity);
});