Hello everyone,
I have a page written in HTML5 which atuomatically resizes the page when used on different devices. I also have a menu which goes from a drop down menu in desktop mode to a sort of pull down menu in mobile mode. This video pop-up works in desktop mode, but when I click on the menu option in the pull down menu, the menu lifts back up and I do not see a popup. I am using Netbeans ide with the "Twenty" template from html5up.net.
Here is the link to my github site:
http://ggraz330.github.io/
Here is the code to my drop down menu:
<nav id="nav">
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li class="submenu">
<a href="">Menu</a>
<ul>
<li><a href="aboutApp.html">About This App</a></li>
**<li><a href="javascript:void();"
onclick="javascript:window.open('images/demo.mp4','Video Name','width=320,height=170,resizable=yes,');">Demo</a></li>**
<li><a href="aboutSTEM.html">About STEM</a></li>
<li><a href="quiz.html">Quiz</a></li>
</ul>
</ul>
</nav>
This function call in bold works in desktop menu mode, but not in mobile. It did work at one point and then stopped working after I added a new quiz page, which I have since removed. Does anything look out of the ordinary from this snapshot? I believe JQuery is being used for the menu and autoresizing.
Thank you in advance.