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.
<img src="myImg.jpg" alt="image of me" [b]title="This is a description of the picture which will for a while hover over the picture while I am hovering over it with the mouse." />
<html>
<head>
<title>Untitled</title>
<script type="text/javascript">
function toggle(el)
{
myEl = document.getElementById(el);
myEl.style.display = (myEl.style.display == 'none') ? 'block' : 'none';
}
</script>
</head>
<body>
<div id="show" style="display: block;"><a href="#" onclick="toggle('show');toggle('hide');toggle('a');"><img src="logopoint.gif" width="14" height="17" border="0"></a></div>
<div id="hide" style="display: none;"><a href="#" onclick="toggle('show');toggle('hide');toggle('a');">Close</a></div>
<div id="a" style="display: none;">This is my logo</div>
</body>
</html>
<script>
function showhide(div){
oDiv = document.getElementById(div);
if(oDiv.style.display == "none"){
oDiv.style.display = "block";
}else{
oDiv.style.display = "none";
}
}
</script>
<div style="display:none;position:absolute;top:50px;" id="div1">
Popup stuff here
</div>
<a href="#" onmouseover="showhide('div1')" onmouseout="showhide('div1')">Roll over me</a>
function showhide(div){
oDiv = document.getElementById(div);
oDiv.style.display = (oDiv.style.display == "none") ? "block" : "none";
}
(expression) ? true case : false case
if (var1 == 'abc') {
var2 = '123';
} else {
var2 = '456';
}
var2 = (var1 == 'abc') ? '123' : '456';
function showhide(div){
(oDiv = document.getElementById(div)).style.display = (oDiv.style.display == "none") ? "block" : "none";
}
function iif(cond,tv,fv)
if cond then iif = tv else iif = fv
end function