You are not logged in.
Hey guys,
Been banging my head on the wall for a few hours just to find out a javascript validation system we are using on the same page calls this function:
/* Prototype push if missing
------------------------------------------- */
if ( typeof Array.push == 'undefined' )
Array.prototype.push = function()
{
var arg, i = 0;
while( arg = arguments[i++] )
{
this[this.length] = arg;
}
return this.length;
}
This function causes the context menu to not work (only shows cut/copy/paste). Any ideas how we can fix this?
Thanks!
Offline
Any ideas on this guys? I really need a fix.
Offline
renamed the push and moved the thing out of the form submit and changed it around for the onsubmit button -- now it works
Offline