Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
_____ _____ _____ _____
| a | b | c | d |
|_____|_____|_____|_____|
_____ _____ _____ _____
| a | b | c | d |
|_____|_____|_____|_____|
| item 1 |
| item 2 |
| item 3 |
| item 4 |
| item 5 |
|_________|
<Table>
<col width="100px">
<col width="100px">
<col width="100px">
<col width="100px">
<tbody>
<TR>
<TD id="File">File</TD>
<TD id="Edit">Edit</TD>
<TD id="Display">Display</TD>
<TD id="Options">Options</TD>
</TR>
</tbody>
</TABLE>
<Div id="sub_File" class="subMenuDiv" style="top : 40px; left: 13px">sub_File</div>
<Div id="sub_Edit" class="subMenuDiv" style="top : 40px; left: 119px">sub_Edit</Div>
<Div id="sub_Display" class="subMenuDiv" style="top : 40px; left: 225px">sub_Display</Div>
<Div id="sub_Options" class="subMenuDiv" style="top : 40px; left: 331px">sub_Options</Div>
.subMenuDiv {
border : solid 1px;
position : absolute;
display : block;
width : 200px;
height : 220px;
overflow : hidden;
text-align : left;
z-index : 200;
}
<Script Language="javaScript">
var subMenus = new Array("sub_File", "sub_Edit", "sub_Display", "sub_Options");
function ShowMenu() {
window.event.cancelBubble = true;
var o_toolbarItem = window.event.srcElement;
var divId = "sub_" + o_toolbarItem.id;
for (var i=0;i<4;i++) {
var o_TmpSubmenu = document.getElementById(subMenus[i]);
if (o_TmpSubmenu.id == divId )
o_TmpSubmenu.style.display = "block";
else
o_TmpSubmenu.style.display = "none";
}
}
function HideMenus() {
for (var i=0;i<4;i++) {
var o_TmpSubmenu = document.getElementById(subMenus[i]);
o_TmpSubmenu.style.display = "none";
}
}
</Script>
<Table border="1px">
<col width="100px">
<col width="100px">
<col width="100px">
<col width="100px">
<tbody>
<TR>
<TD id="File" onmouseover="ShowMenu();">File</TD>
<TD id="Edit" onmouseover="ShowMenu();">Edit</TD>
<TD id="Display" onmouseover="ShowMenu();">Display</TD>
<TD id="Options" onmouseover="ShowMenu();">Options</TD>
</TR>
</tbody>
</Table>
<body onmouseover="HideMenus();">
<Div id="sub_File" class="subMenuDiv" onmouseover="window.event.cancelBubble = true" style="top : 40px; left: 13px">sub_File</div>
<Div id="sub_Edit" class="subMenuDiv" onmouseover="window.event.cancelBubble = true" style="top : 40px; left: 119px">sub_Edit</Div>
<Div id="sub_Display" class="subMenuDiv" onmouseover="window.event.cancelBubble = true" style="top : 40px; left: 225px">sub_Display</Div>
<Div id="sub_Options" class="subMenuDiv" onmouseover="window.event.cancelBubble = true" style="top : 40px; left: 331px">sub_Options</Div>