jquery – how to show a hidden div

Try

$('#map').css('visibility','visible');

Actually, if style has display:none, you can use jquery function

$('#map').show();

Leave a Comment