всем привет, я написал проверку и генерацию кнопок через jQuery... но оно почему-то не работает в HTML, тоесть кнопку не генерирует
<script type="text/javascript">
(function poll(){
setTimeout(function(){
$.ajax({
type: "GET",
url: "/api/template",
processData: true,
dataType: 'text',
cache: false,
success: function (data, textStatus, request) {
var templateTotal = jQuery.parseJSON(data);
var templateButton = "";
for(i=1; i > templateTotal; i++)
templateButton += '<button class="templateButton" id="T'+i+'"formaction="/api/template"post="template='+i+'">T'+i+'</button>'
.html(templateButton);
},
complete: poll });
});
})();
</script>