Im having some trouble understanding how to use the search module,
the following call works (on the documentation page) when i run it in my console:
$('.ui.search').first().search('hide results');
this worked like once, now i cant get it to work:
$('.ui.search').first().search('display message', 'want' ,'text');
But others are not working, they seem to return some html, but not do what i expected, which is to
render something to the search box/results suggestions:
$('.ui.search').first().search('show results'); // returning html
$('.ui.search').first().search('add results', b);
Im trying to Use the search box without using a remote REST api, but with a local object that i intend to modify on
the fly depending on the content of the searchbox, how would i interact with the searchbox showing results and so
on?
$('.ui.search').first().search('search remote', 'qwerty');