$(function() { $("#textBoxID").on("input", function() { var text = this.value.toLowerCase(); $(".hero-grid a").css("opacity", function() { return this.textContent.toLowerCase().indexOf(text) > -1 ? 1 : .1 }) }) });