Re: avoid the message: error: menu element not found
2006/09/12 14:20
Viewed 4634 times
Replies: 1/2

A simple workaround is to include this script section in your pages, after including hmenu.js:

<script type="text/javascript">
DynarchMenu.__orig_setup = DynarchMenu.setup;
DynarchMenu.setup = function(id, args) {
var el = document.getElementById(id);
if (el) {
return DynarchMenu.__orig_setup(el, args);
}
};
</script>
Re[2]: avoid the message: error: menu element not found
2006/09/13 08:54
Viewed 5990 times
Replies: 1/1

Thanks for your reply! It works perfect

digo

last
Re[3]: avoid the message: error: menu element not found
2006/09/14 05:56
Viewed 7273 times
Replies: 0/0

another workaround is assert ur targets.

last
Google