diff --git a/js/table_search.js b/js/table_search.js index 7db6a5f..83fa1ea 100644 --- a/js/table_search.js +++ b/js/table_search.js @@ -32,7 +32,7 @@ var regExp = new RegExp(inputVal, 'i'); if (regExp.test($(td).text())) { found = 1; // Set found to true if a match is found - return ; // Break out of the each loop + return; // Break out of the each loop } }); if (found == 1) {