<section class="dataTable">
<header>
<h1>Full Text Search with Javascript</h1>
<h2>search what do you want to fined : </h2>
</header>
<section class="search">
<input type="text" name="filter" id="txtFind" value="" placeholder="e.g :s c f">
</section>
<table id="table">
<thead>
<tr>
<th>id</th>
<th>Name</th>
<th>Last Name</th>
<th>Skill</th>
</tr>
</thead>
<tbody class="bodyTable">
<tr>
<td>1</td>
<td>Mekaeil</td>
<td>Andisheh</td>
<td>Front-End Developer</td>
</tr>
<tr>
<td>2</td>
<td>David</td>
<td>Keri</td>
<td>Back-End Developer</td>
</tr>
<tr>
<td>3</td>
<td>Jack</td>
<td>Cook</td>
<td>Designer</td>
</tr>
<tr>
<td>4</td>
<td>Stive</td>
<td>Jobs</td>
<td>Co-Founder</td>
</tr>
<tr>
<td>5</td>
<td>Jany</td>
<td>Anderson</td>
<td>Web Designer</td>
</tr>
</tbody>
</table>
</section>
<iframe height="800" style="width: 90%;" scrolling="no" title="FullTextSearchjs" src="https://codepen.io/bgoonz/embed/QWvMWoQ?default-tab=html%2Cresult" frameborder="no" loading="lazy" allowtransparency="true" allowfullscreen="true">
See the Pen <a href="https://codepen.io/bgoonz/pen/QWvMWoQ">
FullTextSearchjs</a> by Bryan C Guner (<a href="https://codepen.io/bgoonz">@bgoonz</a>)
on <a href="https://codepen.io">CodePen</a>.
</iframe>
body,
html {
margin: 0;
padding: 0;
font: 100%/1.5 "Open Sans", sans-serif;
}
*,
*::after,
*::before {
box-sizing: border-box;
}
.dataTable {
margin: 0 auto;
width: 80%;
padding: 1em;
text-align: center;
}
.dataTable .search {
margin: 2em auto 1em;
width: 100%;
}
.dataTable .search input[type="text"] {
width: 60%;
border: 1px solid #ccc;
padding: 0.5em 1em;
font-size: 1.5em;
}
.dataTable .search input[type="submit"] {
width: 20%;
padding: 0.5em 1em;
border: 1px solid #ff5951;
color: #fff;
font-size: 1.5em;
background: #ff5951;
cursor: pointer;
}
.dataTable table {
width: 100%;
border-collapse: collapse;
}
.dataTable table thead {
background: #bbb;
}
.dataTable table td,
.dataTable table th {
padding: 1em 0.5em;
border: 1px solid #ccc;
}
.dataTable th td {
font-weight: 900;
font-size: 1.2em;
}
.dataTable tbody tr:nth-child(2n) {
background: #f9f9f9;
}
.dataTable tbody tr:hover {
background: #eee;
}
.dataTable tbody td {
font-size: 1em;
}
.dataTable tbody tr.showRowResult {
display: table-row !important;
}
.dataTable tbody tr.showRowResult .addBgCell {
background: #f4364c;
}
.dataTable tbody tr.results:not(.showRowResult) {
display: none;
}
"use strict";
document.addEventListener("DOMContentLoaded", filterTable);
function filterTable() {
const inputFilter = document.getElementById("txtFind"); // get input type of text
const bodyRow = document
.getElementById("table")
.getElementsByTagName("tbody")[0]; // find Body Row Table
const rowTable = bodyRow.getElementsByTagName("tr"); // get all of the rows
const lengthRow = rowTable.length; // calculate number of rows
const lengthCol = document.getElementById("table").getElementsByTagName("th")
.length; //number of table's column
let arrStr = []; // create array for save all of value from input
let saveNumRows = []; // create Array for save Row's number
const backupArr = []; // get backup the array
const getNumRows = []; // create array for use one time !
let lenVal;
var goFilter;
let numRowArr;
for (let i = 0; i < lengthRow; i++) {
getNumRows[i] = rowTable[i].getElementsByTagName("td")[0].innerHTML; // save all of the Row's number
}
backupArr[0] = getNumRows; // get Backup the all of the row
// when user write and focus out
inputFilter.addEventListener("keyup", function (e) {
const val = this.value.toLowerCase().trim();
arrStr = val.split(" "); //save all of character in array
lenVal = arrStr.length; // get length of array
if (val.length == 0) {
// if length of input value is Zero
for (var i = 0; i < lengthRow; i++) {
saveNumRows[i] = rowTable[i].getElementsByTagName("td")[0].innerHTML; // save all of the Row's number
} //for
} //if
for (var i = 0; i < lenVal; i++) {
goFilter(arrStr[i], lenVal); // send value and length array
} //for
}); //inputFilter.addEventList ener
var goFilter = function goFilter(val, arrInput) {
for (
let i = 0, counter = 0, numRowArr = backupArr[arrInput - 1].length;
i < numRowArr;
i++
) {
for (let j = 1; j < lengthCol; j++) {
const colTable = rowTable[parseInt(backupArr[arrInput - 1][i]) - 1]
.getElementsByTagName("td")
[j].innerHTML.toLowerCase(); //get table's cell
if (colTable.includes(val)) {
saveNumRows[counter] = rowTable[
parseInt(backupArr[arrInput - 1][i]) - 1
].getElementsByTagName("td")[0].innerHTML; // save number of row that is in result
rowTable[parseInt(saveNumRows[counter]) - 1].setAttribute(
"class",
"showRowResult"
); // add class to display table-row for show
//saveNumRows[counter] = backupArr[arrInput-1][i];
counter++;
break; // when any result finded , break the row and go to the next row
} //if
else {
rowTable[parseInt(backupArr[arrInput - 1][i]) - 1].setAttribute(
"class",
"results"
); // add class for hidden table's row that is not in result
} //else
} //for
} //for
backupArr[arrInput] = saveNumRows; // save number of rows in first Character or sevtence before Space
saveNumRows = []; // remove element's array for reuse again
}; //goFilter
} //filterTable
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.