Mostrar/Ocultar categorias |
Oculta as categorias ao clique.
1º - JavaScript/Inicial
Painel de Controle : Seta Azul : Visualização : Seta Azul : Geral : Seta Azul : Mensagem na Página Inicial.
- Código:
<div align="right"><input id="mostrador" style="height: 24px; margin: 0px;" type="button" value="Mostrar Categorias" onClick="gothere()">
<input id="escondedor" style="height: 24px; margin: 0px;" type="button" value="Ocultar Categorias" onClick="gothere()">
</div>
<script>
jQuery(document).ready(function(){
jQuery(".forabg").show(1000);
});
</script>
<script>
jQuery(document).ready(function(){
jQuery("#mostrador").click(function(){
jQuery(".forabg").show(1000);
});
jQuery("#escondedor").click(function(){
jQuery(".forabg").hide(1000);
});
});
</script>
<style>
#mostrador, #escondedor{
color:#1E90FF;
cursor:pointer;
}
#mostrador:hover, #escondedor:hover{
background-color:#E0FFFF;
}
</style></div>
2º - Resultado
© VirtualDesign/STAFFGROPS