Código PHP:
function mostrarcomentario(id){
$.ajax({
url: 'mostrarpublicacion.php',
data: 'idcomentario='+ id,
type: 'get',
error: function(obj, obj2){
alert();
},
success: function(data){
$('#lateral').fadeIn(1000).html(data);
$("#encuestion").html(data);
inicio();
}
});
if ((document.getElementById("encuestion").style.display) == 'block') {
document.getElementById("encuestion").style.display = 'none';
document.getElementById("menu2").style.display='block';
}else{
document.getElementById("encuestion").style.display = 'block';
document.getElementById("menu2").style.display='none';
}}
<div id="menu">
... elementos
... textos, parrafos, etc...
<div id="encuestion"></div>
</div>
Código PHP:
function back(){
document.getElementById("lapubli").style.display ='none'
document.getElementById("menu2").style.display = 'block';
}
<div id="lapubli"></div> (Aquí cargo la publicación según el id que le pasé con la funcion js anterior)
Uncaught TypeError: Cannot read property 'style' of null en línea: 248
Y la línea 248 corresponde a esta frase de la primera función js:
Código PHP:
if ((document.getElementById("encuestion").style.display) == 'block') {