You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since I'm using jQuery 1.8.3 with ManagerManager I recently got the alert
ManagerManager: An error has occured:
Error - Syntax error,
unrecognized expression: input[name=tv11[]]
Its because jQuery stumbles over the [] in the TV name.
Escaping the brackets in mm.inc.php line 146 and line 151 will do the trick:
change $fieldname_suffix = '[]';to $fieldname_suffix = '\\\\[\\\\]';
I'm not sure about this, but maybe this applies also to other jQuery versions...
The text was updated successfully, but these errors were encountered:
Since I'm using jQuery 1.8.3 with ManagerManager I recently got the alert
Its because jQuery stumbles over the [] in the TV name.
Escaping the brackets in
mm.inc.php
line 146 and line 151 will do the trick:change
$fieldname_suffix = '[]';
to$fieldname_suffix = '\\\\[\\\\]';
I'm not sure about this, but maybe this applies also to other jQuery versions...
The text was updated successfully, but these errors were encountered: