$(document).foundation();
$(document).ready(function(){
$("#number-search").keyup(function(){
_this = $(this);
$.each($("table td#numberUl"), function() {
if($(this).text().toLowerCase().indexOf($(_this).val().toLowerCase()) === -1)
$(this).hide();
else
$(this).show();
});
});
});