<script> function showPopup() { $('#popupMenu').show(); }
function hidePopup() { $('#popupMenu').hide(); }
//Because the popup has a fixed position i have to hide it on each pageshow $(document).on('pageshow', '#corporateToolkitPage', function (event) { hidePopup(); }); </script>
This is working fine on android/blackberry/ios but for some reason this will not load in WP7 emulator or on one WP7 phone that I tried...
Here is the CSS behind it just in case its a css issue