Table press and searching

I have made my programming tools list with Excel, TablePress and script.

First, the list was existing in Excel – with columns as name, tag, description and url.

I have saved as CSV and imported in TablePress – with some modification for url as TablePress understands it ( you should have the a href embed in the cell).

The difficult part was searching – so I can have those headers that will complete the search:

image

 

So I was making my own javascript for that:

function b(a){
var $j = jQuery.noConflict();

$j("#tablepress-2_filter :input").val(a);
}

I do not know how to make a plugin for WordPress – but I think it is not so terrible. However, I let others make it .