To use JSON Data repeater please follow the following steps:

- Download DataRepeater.js
- Add a java script reference of the downloaded file to your page
- Add an empty DIV where the data should be represented, and give it a unique name
- write your Item template, and to bind data use the following within your template #<feildName>#
- add the following code to your header:
<script>
$(document).ready(function () {
var itemTemplate = "<!-- Your item template here -->"
var separatorTemplate = "<!-- Your item separator template here -->";
var dataObject= null <-- pass your JSON Object here ";

dataObject = data.results;
$('#<DIVIDHere>').MHTReapeater({
dataSource: dataObject,
headerTemplate: '',
itemTemplate: itemTemplate,
separatorTemplate: separatorTemplate,
footerTemplate: '',
EmptyData: '<p>No Data</p>'
});
});
</script>