SERVICE FINDER
-
PWSA Water Bill
-
Pittsburgh Regional Transit
Our 2,600 employees operate, maintain and support bus, light rail, incline and paratransit services to provide more than 60 million rides a year.
-
EngagePGH
Learn about current City Department projects, programs, and initiatives.
-
311 Response Center
Contact 311 for non-emergency City of Pittsburgh concerns or questions. Visit 311 to submit a Service Request.
-
Pittsburgh Parking Authority
Have questions about a ticket you just received or inquiring about a job opening? Click on the corresponding links below to find out what your options are.
-
Traffic Court
Traffic offenses, Non-traffic summary offenses, Violations of City of Pittsburgh ordinances, Criminal cases, Preliminary hearings.
-
OneStopPGH
In 2019, Mayor Peduto announced OneStopPGH: a website where residents can apply, pay for, and receive business licenses and permits, upload development plans, and track violation notices. Now you can navigate the development process from home, work, or on the go.
-
Duquesne Light Company
City of Pittsburgh's electricity company, Duquesne Light maintains the poles and wires, responds in an emergency and issues your bill.
');
// set initial results if popular tag exists ---
$('label[for="popular_filter"]').addClass('active-filter');
$('#popular_filter').val('ocsf-popular');
$('.ocsf-popular').addClass('active');
var first = $('.ocsf.active a').first();
first.addClass('selected');
popResult(first.text(), first.attr('href'), first.next('span').text());
} else {
// set initial results if popular tag DOES NOT exist ---
$('.ocsf').addClass('active');
var first = $('.ocsf.active a').first();
first.addClass('selected');
popResult(first.text(), first.attr('href'), first.next('span').text());
}
// category filter setup ---
if (categoryFilter.length > 0){
$('.ocsf-filters').append('
');
$.each(categoryFilter, function(index, value){
var optionText = value.replace('ocsf-cat-','').replace(/-/g, ' ');
$('#category_filter').append('
');
});
}
// department filter selector ---
if (departmentFilter.length > 0){
$('.ocsf-filters').append('
');
$.each(departmentFilter, function(index, value){
var optionText = value.replace('ocsf-dept-','').replace(/-/g, ' ');
$('#department_filter').append('
');
});
}
// filter functionality ---
$('.ocsf-filters select').on('change', function(e){
$('.active-filter').removeClass('active-filter');
$('label[for="' + $(this).attr('id') + '"]').addClass('active-filter');
var tc = $(this).children("option:selected").val();
refreshFilters(tc);
// set all non-active filter dropdowns to all ---
$(this).parent().siblings('.select-wrapper').children('select')[0].selectedIndex = 0;
$(this).parent().siblings('.select-wrapper').children('select')[1].selectedIndex = 0;
});
});