fullscreen map not displayed correctly
- by user1747168
I want the map to be opened on full-screen. I've tried this:
<div class="b-firm-map-content" id="map"></div>
<a href="#" onclick="test2();return false;" >full screen</a>
function test2(){
var width = $(window).width()-3;
var height = $(window).height();
$('#map').css({
'width': width,
…