currently i am trying to implement a pop menu on top of one page when active a action.
actuall the popup menu is DIV strcture names "rootNode" which includes 2 function as below:
this.show = function() {
this._rootNode.css("visibility", "visible");
};
this.hide = function() {
alert("visibility hidden");
this._rootNode.css("visibility", "hidden");
// this._rootNode.css("display", "none");
};
which the problem is everything is ok when the app is running on Simulator,
but the popup menu can't be hide normally on Device when hide function is actived , always displaying.
does it relate to the difference Brower between Simulator and Device? any way to reslove it?