Posts: 2
Name: David Joshua Rodman
|
Hi!
On every page refresh, there's an error -
line 168, unexpected call to property or method access.
Offending line is in red:
vB_Popup_Menu.prototype.init_control = function(noimage)
{
this.controlobj = fetch_object(this.controlkey);
this.controlobj.state = false;
if (this.controlobj.firstChild && (this.controlobj.firstChild.tagName == 'TEXTAREA' || this.controlobj.firstChild.tagName == 'INPUT'))
{
// do nothing
}
else
{
if (!noimage && !(is_mac && is_ie))
{
var space = document.createTextNode(' ');
this.controlobj.appendChild(space);
var img = document.createElement('img');
|