I have a script with functions to control what each button an application does. I declare a global variable so that when all the buttons are clicked, two actions are triggered: hide one div and show another.
//variável global
var completo = 0;
//funções para controlar 9 botões - em cada uma das funções incremento a variável:
function A()
{
faz qualquer coisa;
completo++
}
function B()
{
faz qualquer coisa;
completo++
}
function C()
{
faz qualquer coisa;
completo++
}
function D()
{
faz qualquer coisa;
completo++
}
function E()
{
faz qualquer coisa;
completo++
}
function F()
{
faz qualquer coisa;
completo++
}
function G()
{
faz qualquer coisa;
completo++
}
function H()
{
faz qualquer coisa;
completo++
}
function I()
{
faz qualquer coisa;
completo++
}
So far I should increment 9 times the complete variable, getting full = 9, right?
Then it would trigger action - when the variable reaches 9, hide the general div and show the final div.
if(completo==9)
{
$('div[id^="final"]').show();
$('div[id^="geral"]').hide();
}
This last part is not functional.
I have also tested with the following, but to no avail:
if(completo==9)
{
$("#final").show();
$("#geral").hide();
}
Can you help me?
In the html part I have declared both the general div and the final div:
<div id="geral">"conteudo blablabla"</div>
<div id="final">"conteudo blablabla"</div>