I am using this code to load a .html page, but it does not create several as I would like, I have the feeling that it only manages to create it once. I would like to create several of them.
for(var i = 0; i < 4; i++)
{
$.post('linha.html', function (html)
{
$('#baseTorrent').html(html);
});
}