How to create something like this

JimHalpert

Supreme Member
Joined
Jan 16, 2016
Messages
1,345
Reaction score
292
Hi everyone,

Could someone please let me know what to use to create this? (link).

A search field that automatically refresh the list as you key in results.

Thank you.
 
You could do that with jQuery filter like this :

Code:
https://www.w3schools.com/jquery/jquery_filters.asp

or use an extensive javascript library like listjs :

Code:
http://listjs.com/examples/table/

The search field doesn't refresh the list but just filters the fields that are matching the input data.
 
You could do that with jQuery filter like this :

Code:
https://www.w3schools.com/jquery/jquery_filters.asp

or use an extensive javascript library like listjs :

Code:
http://listjs.com/examples/table/

The search field doesn't refresh the list but just filters the fields that are matching the input data.

Thank you for your reply SpoonFeeder. May I know if there is an easy wordpress plugin / theme to help me do this?
 
TablePress plugin has the search and filter function : https://wordpress.org/plugins/tablepress/

screenshot-8.png
 
TablePress plugin has the search and filter function : https://wordpress.org/plugins/tablepress/

May I also know what function / plugin can I use to do something like this (link). Where a user can key in the name and then mark it as favourites by the side (clicking the star). After marking all their favourites, they can view their aggregate results in the favourite tab.

Thank you and appreciate your help in babysitting us :)
 
May I also know what function / plugin can I use to do something like this (link). Where a user can key in the name and then mark it as favourites by the side (clicking the star). After marking all their favourites, they can view their aggregate results in the favourite tab.

Thank you and appreciate your help in babysitting us :)

That's gona require a small custom component. Key in "star checkbox snippet" or something like that into google and you should get some code examples.
 
That's gona require a small custom component. Key in "star checkbox snippet" or something like that into google and you should get some code examples.

Hey barto, I tried doing that but wasn't successful. Would you mind sharing the exact keywords I should be searching for? Should I add jquery in the search term or what other terms?

Apologies as I do not come from a programming background, I am unsure about this. thanks.
 
Back
Top