Home › Forums › MapPress Support › IE8 shows no POI list in mashup › Reply To: IE8 shows no POI list in mashup
February 11, 2013 at 9:32 am
#11642
The reason I put it in map_poi_list was because I was unable to get the script to fire anywhere else, inline in the footer, in external js files, anywhere. once the map list is built I can’t manipulate any of it externally…
<script type=”text/javascript”>
$( “.mapLinks li” ).each(function(index) {
$(‘.lazyLoad’).hide();
if (index >= 20) {
$(this).hide();
$(‘.lazyLoad’).show();
}
});
</script>
I just want to hide the rest of the list since we have like 200 items and then put a button on the bottom to show the rest.