Posts by Paladin • 25 points
5 posts
-
1
votes0
answers42
viewsQ: How to jump to the next two-dimensional array value and print this value
I would like to take the value of the second index of the array " game[0][1]=["1", "15/06", "09:00", "Egypt", I have to jump to the next game (next line) until I find a match that hits on the…
-
0
votes0
answers71
viewsQ: Why are the letters being printed individually ? and not the words of the array as "SAMSUNG" for example?
var controle; var index = 0; function escolheControle(c) { controle = c; marca =todasAsmarcas[controle]; window.location=…
-
0
votes1
answer53
viewsQ: how to pass the BRAND variable that receives an Array per Javascript URL to another page? what am I doing wrong?
function escolheControle(c) { controle = c; marca =todasAsmarcas[controle]; window.location="marcaWebkit.htm"; console.log(controle+' controle-----'); console.log(todasAsmarcas+'…
-
1
votes1
answer35
viewsQ: How do I get the value that is returning from the console.log(Results[4].geocode) to use in my if comparison?
var init = [iAppLib.getPersonalBits(), iAppLib.getGeoCode() ]; var codes = false; var gcOk = new…
-
0
votes2
answers156
viewsQ: How to validate an upload by file name?
I am trying to validate the upload of a file , and the same should always be called new.mpg, if not, the program will not work. function validarNomeArquivo(){ //variavel que recebe o nome do arquivo…