This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Please see https://github.com/Lewiscowles1986/WordPressSVGPlugin from now on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Table Filter | |
* @usage: <input type="search" onkeyup="Tablefilter(this, 'VReportList')" />\ | |
* where VReport is the id of the table body | |
*/ | |
function Tablefilter (phrase, _id) { | |
var words = phrase.value.toLowerCase().split(" "); | |
var table = document.getElementById(_id); | |
var ele; |
OlderNewer