William
William

Reputation: 8808

JavaScript hover menu not disappearing when it should

Alright, so I'm trying to write a drop-down menu in JavaScript, but it doesn't vanish when it should (on mouse out). How do I make it vanish when it should?

Here is the site it's on: http://prime.programming-designs.com/designs/graymech/about.htm

Upvotes: 1

Views: 193

Answers (1)

user113716
user113716

Reputation: 322492

You have ReferenceError on lines 31 and 43 in your code where a function called IsMouseOver is invoked.

Appears as though this function doesn't exist in your code.

Upvotes: 2

Related Questions