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.
<div id="Layer16" style="position:relative">
<ul class="mktree" id="tree1">
<li class="liClosed">Disease Agent
<ul>
<li><a onclick="addToList([blue]this[/blue]);" name="text">Bacteria</a></li>
<li><a onclick="addToList([blue]this[/blue]);" name="text">Fungi</a></li>
<li><a onclick="addToList([blue]this[/blue]);" name="text">Parasites</a></li>
<li><a onclick="addToList([blue]this[/blue]);" name="text">Prion Proein</a></li>
<li><a onclick="addToList([blue]this[/blue]);" name="text">Viruses</a></li>
</ul>
</li>
</ul>
</div>
This is the javascript that runs after something is clicked.
<script type="text/javascript">
function addToList(str){
[blue]alert(str.childNodes[0].nodeValue)[/blue]
if (document.forms['wdinSearch'].elements['search'].value=="") {
document.forms['wdinSearch'].elements['search'].value =str;
}
else {
qrystring=document.forms['wdinSearch'].elements['search'].value;
document.forms['wdinSearch'].elements['search'].value=qrystring+" " +str;
}
}
</script>
function addToList(str){
if (document.all){
newVal = str.innerHTML
}
else{
newVal = str.childNodes[0].nodeValue
}
if (document.forms['wdinSearch'].elements['search'].value=="") {
document.forms['wdinSearch'].elements['search'].value = newVal;
}
else {
qrystring=document.forms['wdinSearch'].elements['search'].value;
document.forms['wdinSearch'].elements['search'].value=qrystring+" " + newVal;
}
}
innerHTML is not supported by IE
if (document.all){
[red]newVal = str.innerText[/red]
}
else{
newVal = str.childNodes[0].nodeValue
}