Una preguntilla,
¿Habría alguna forma de optimiziar/acortar la siguiente función?
Código PHP:
function checkthis()
{
var oCheckBox = document.getElementById('checkpromo');
if (oCheckBox.checked == true) {
document.getElementById('nuevapromo').style.visibility="visible";
document.getElementById('promoexist').style.visibility="hidden";
}else{
document.getElementById('nuevapromo').style.visibility="hidden";
document.getElementById('promoexist').style.visibility="visible";
}
}