Skip to main content

City of South Burlington, Fire Dept., Rental Registry

Citation
City of South Burlington, Fire Dept., Rental Registry
Source
Official source

Full Text

1,698 chars
Action buttons will be dynamically added here

Skip to Main Content

Begin Signed Out Bar

Create a Website Account - Manage notification subscriptions, save form progress and more.

Website Sign In

$(document).ready(function () {
$('#signedOutToolbarCreateProfileButton').click(function (event) {
event.preventDefault();
window.location.href = '/MyAccount/ProfileCreate?from=url&url=/&dn=' + window.location.origin;
});

$('#loggedOutToolbarSignInButton').click(function (event) {
event.preventDefault();
window.location.href = '/MyAccount/?from=url&url=' + encodeURIComponent(window.location.href.replace(window.location.origin, '')) + '&dn=' + window.location.host;
});

if ('False' == 'True') {
$('#loggedOutToolbarSignInButton').hide();
}
})

End Signed Out Bar

Header Container

$(document).ready(function () {
try {
// Minimum characters required before performing a search/autocomplete
var minPrefixLength = 3;
var autoCompleteDebounceDelay = 500;
var searchFieldSelector = "#searchField" + '154e270d-9b6f-4cf5-bc1f-9cd1b06798e3';
var checkboxSelector = "#ysnSearchOnlyDept" + '154e270d-9b6f-4cf5-bc1f-9cd1b06798e3';
var buttonSelector = ".widgetSearchButton" + '154e270d-9b6f-4cf5-bc1f-9cd1b06798e3';
var autoCompleteCache = {};
var autoCompleteCacheKeys = [];
var autoCompleteCacheLimit = 25;
var currentAutoCompleteRequest = null;
var currentAutoCompleteRequestKey = null;
var autoCompleteDebounceTimer = null;
var autoCompleteDebounceKey = null;
var pendingAutoCompleteResponses = [];

function normalizeAutoCompleteTerm(term) {
return $.trim((term || "") + "").replace(/\s+/g, " ");
}

function shouldSearch(term) {
return normalizeAutoCompleteTerm(term).length >= minPrefixLength;
}