A special form field that allows for the input of search text.
<head>
<link rel="stylesheet" href="fabric.min.css">
<link rel="stylesheet" href="fabric.components.min.css">
<script src="jquery-2.2.1.min.js"></script>
<script src="jquery.fabric.min.js"></script>
</head>
<script>
tag to your page, below the references to jQuery and Fabric's JS, to instantiate all SearchBox components on the page: <script>
$(document).ready(function() {
if ($.fn.SearchBox) {
$('.ms-SearchBox').SearchBox();
}
});
</script>
This component has a dependency on the Label component.