I am experiencing an issue with my javascript menu on iOS 5 update. It functions properly on Firefox, IE, Safari, and iPhone/iPad iOS 4. However, after the iOS 5 update, the submenu briefly appears and then disappears when a menu item is clicked. Can anyone provide insight into what has changed and how I can resolve this issue?
var dbMenu = {
// JavaScript code for handling menus
...
}
// Function for adding event listeners
function addEvent(elm, evType, fn, useCapture){
// Cross-browser event handling implementation
...
}
addEvent(window, 'load', dbMenu.init, false);