Home › Forums › MapPress Support › Map appearing partially in a toggle › Reply To: Map appearing partially in a toggle
July 18, 2013 at 4:15 am
#13038
You passed the result of the resize function to slideToggle, not the function itself. It should be:
`$(“#mapp”).hide();
$(“#maptoggle”).click(function(){
$(“#mapp”).slideToggle(“fast”, mapp0.resize);
});