0
Personal I am trying to make a system of counting pages,that it counts the total of pages and which current page the user is.
I managed to make the total count of page however I am not able to find a way to show the current page of it ,I tried to use the method of position() but I could not.
var arrMenuInterno = [
{ titulo: "Introdução",
telas: [
{arquivo: "ambev_VPO_gente_sld002.swf", tipo:""},
{arquivo: "ambev_VPO_gente_sld005.swf", tipo:""},
{arquivo: "ambev_VPO_gente_sld007.swf", tipo:""},
{arquivo: "ambev_VPO_gente_sld009.swf", tipo:""},
{arquivo: "ambev_VPO_gente_sld010.swf", tipo:""}
]
}
];
for(var i = 0;i < arrMenuInterno.length;i++){
_totalTelas = arrMenuInterno[i].telas.length;
}
$("#qtdTelas").html(+ localizaTelaAtual + "</b> de <b>" + _totalTelas + "</b>");