At Libra, we live for the challenge of complex requirements. With a legacy of businesses with long roots in system integration, precision machining, PCBA layout design and manufacturing, sheet metal and fabrication, and cable and wire harness we have combined them into a single Systems Integrator with broad vertical capabilities to support complex system requirements.
We provide end product System Integration – and the vertical requirements that go into them – for our Fortune 500 customers in the Robotics, Semi-cap, Aerospace & Defense, Medical, Communications and Industrial Equipment markets.
Solving our customers’ manufacturing challenges is the reason we exist.
Careers
"
+ "
"
+ "
"
+ "
" + jobLocation
+ "
"
+ "
Department: " + department
+ "
"
+ "
"
+ "
"
+ "
"
+ "
"
+ ""
$("#jobsList").append(jobsString);
}
//How many Listings should there be?
//console.log("Number of jobs that should be visible: " + data.jobs.length);
});
//Detect Enter Key in search bar then run search
$(document).keyup(function (e) {
if ($("#jobSearchBar").is(":focus") && e.key == "Enter") {
updateSearch();
}
});
//Compare Strings to find match, then hide those that don't
function updateSearch() {
$(".individualListing").each(function () {
let sortStringification = $(this).html().toLowerCase();
sortStringification = $(sortStringification).text();//Removes any html element including id's and classes
if (sortStringification.indexOf($("#jobSearchBar").val().toLowerCase()) != -1) {
$(this).css("display", "list-item");
} else {
$(this).css("display", "none");
}
})
};
//Compare Filter Strings, somewhat similar to the search bar functionality
function updateFilter(id) {
let selectWhich = "#" + id;
let selectValue = $(selectWhich).val();
if (selectWhich === "#departmentsList") {
if (selectValue != "No Filter Selected") {
departmentFilter = selectValue;
} else {
departmentFilter = "";
}
if (locationFilter === undefined) {
locationFilter = "";
}
}
if (selectWhich === "#locationsList") {
if (selectValue != "No Filter Selected") {
locationFilter = selectValue;
} else {
locationFilter = "";
}
if (departmentFilter === undefined) {
departmentFilter = "";
}
}
$(".individualListing").each(function () {
let filterStringification = $(this).html();
filterStringification = $(filterStringification).text();
if (filterStringification.indexOf(departmentFilter) != -1 && filterStringification.indexOf(locationFilter) != -1) {
$(this).css("display", "list-item");
} else {
$(this).css("display", "none");
}
});
}
CONTACT LIBRA INDUSTRIES
LIBRA INDUSTRIES DAYTON
401 Leo Street
Dayton, Ohio 45404