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!
TrueType Search is currently only available for the people module.
<script>
$js(function () {
$js('body').remarkable({
searchable: true
});
});
</script>

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.
Requires searchable, placeholder will not work by itself.
<script>
$js(function () {
$js('body').remarkable({
searchable: true,
placeholder: 'Type here to filter people'
});
});
</script>

Last updated
Was this helpful?