Me falto añadir en cerrar.php el siguiente código para que muestre u oculte los div
Código PHP:
Ver original<script type="text/javascript">
function mostrar(id) {
if (id == "0") {
$("#0").hide();
$("#COMPOK").hide();
$("#COMPCAMB").hide();
$("#COMPOKREQ").hide();
$("#FALLIDA").hide();
$("#COMPOKRET").hide();
}
if (id == "COMPOK") {
$("#0").hide();
$("#COMPOK").show();
$("#COMPCAMB").hide();
$("#COMPOKREQ").hide();
$("#COMPOKRET").hide();
}
if (id == "COMPCAMB") {
$("#0").hide();
$("#COMPOK").hide();
$("#COMPCAMB").show();
$("#COMPOKREQ").hide();
$("#COMPOKRET").hide();
}
if (id == "COMPOKREQ") {
$("#0").hide();
$("#COMPOK").hide();
$("#COMPCAMB").hide();
$("#COMPOKREQ").show();
$("#COMPOKRET").hide();
}
if (id == "COMPOKRET") {
$("#0").hide();
$("#COMPOK").hide();
$("#COMPCAMB").hide();
$("#COMPOKREQ").hide();
$("#COMPOKRET").show();
}
if (id == "COMPFALCO") {
$("#0").hide();
$("#FALLIDA").show();
}
if (id == "COMPFAVAS") {
$("#0").hide();
$("#FALLIDA").show();
}
}
</script>