SiteXpert FAQ
Question ID:
Q1012Question:
When I combine the site map with other JavaScript code on a single page, the site map doesn't work properly (e.g. all folders are expanded) or the other script-driven coponent doesn't work. How do I fix this?
<script language='JavaScript'>
<!--
addLoadHandler ('[handler_function]');
//-->
</script>
Please make sure you replace [handler_function] with the name of the other handler function in the above code.
Below is an example:
<script language='JavaScript'>
<!--
function xyz()
{
alert ('this will be displayed when the page is loaded');
}
addLoadHandler ('xyz');
//-->
</script>








