Hello, We are facing the same issue while placing a DIV with some HTML controls on the <VIDEO> tag.
The HTML controls which come under the VIDEO tag DIV are non-click- able but the other one which are out of the VIDEO tag DIV are click- able without any issue . We tried to refer the same code as mentioned by you but were not able to resolve the issue. Can you share your full code for yours with us, so that we can take some guidance from the same or if you could help us in resolving our issue as mentioned above. Pls respond ASAP. Thanks & Regards Surya On Sep 15, 1:46 pm, vinaym <[email protected]> wrote: > Hi, > > I fixed this issue by hiding the video on dropdown > > // Ipad Video Hide on Navigation Overlay > > if((navigator.userAgent.match(/iPhone/i)) || > (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/ > iPad/i))) { > $("body").bind('touchstart', function(){ > if(jQuery('#TopNav li.nav ul').is(':hidden')){ > $('.playerWrapper').children().show(); > } > else{ > $('.playerWrapper').children().hide(); > } > }); > > } > > On Sep 15, 4:11 pm, vinaym <[email protected]> wrote: > > > > > Hey. I have the same exact problem. I have a dropdown menu, but it > > stays behind the video in ipad. Tried z-index, but it doesnt > > work .Looking for a solution too > > > On Aug 11, 1:36 am, JayLink1971 <[email protected]> wrote: > > > > Hi -- > > > > I have an HTML5 video that works well on the iPad. Problem is, > > > there's a drop-down menu for site navigation, and when it goes over > > > the video, the links no longer work. > > > > This is not a z-index problem; the menu is still on top of the > > > player. However, those links that are over the video are dead. Links > > > that are not over the video still work. > > > > The VIDEO element is created by scripting, if that makes a difference. > > > > The links in the menu are regular A tags, not javascript events. > > > > Anyone have this same problem? Anyone, anyone? -- You received this message because you are subscribed to the Google Groups "iPhoneWebDev" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/iphonewebdev?hl=en.
