SanteR,
или так если ссылки величина постоянная, можно сэкономить пару спичек, кешируя поиск элементов.
$(function() {
var a = $(".hero-grid a");
$("#textBoxID").on("input", function() {
var text = this.value.toLowerCase();
a.css("opacity", function() {
return this.textContent.toLowerCase().indexOf(text) > -1 ? 1 : .1
})
})
});