I run a page and get this error:
Uncaught typeerror: object [object Object] has no method 'onmouse'
The code it is referring to is below:
$('.firsttext').onmouse(function () { $('.textinline.hover').show() });
My guess is that whatever .firsttext is being used on doesn't have an onmouse event but maybe a onClick, but I don't have a .firsttext or a .textinline running on the page. Although it could be in my CSS attached to something somewhere. Not sure how to figure out which method it is talking about.