TrueType Search

How it works

The TrueType Search component is a simple, yet powerful feature that most users are likely already familiar with. As you type into the search box, Remark will filter the list of users in the people module, like magic!

<script>
$js(function () {
  $js('body').remarkable({
    searchable: true 
  });
});
</script>

TrueType Search will also filter by job titles, locations and emails.

The powerful TrueType Search will save you time, energy, and frustration when searching through a large list of people.

Placeholder

Change the text that appears in the searchable textbox by using the placeholder option.

<script>
$js(function () {
  $js('body').remarkable({
    searchable: true,
    placeholder: 'Type here to filter people'
  });
});
</script>

Last updated

Was this helpful?