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
Many plugins append extra inputs to form, without name attributes.
For this reason, this plugin should check if the input has a name attribute, before trying to use it, so the user doesn't get this JavaScript error:
Uncaught TypeError: Cannot read property 'replace' of undefined
at HTMLInputElement.showOrHideDependentFieldsRadio (dependent-fields.source.js.coffee:57)
at executeBound (underscore.source.js:701)
at HTMLInputElement.bound (underscore.source.js:733)
at Function.each (jquery.source.js:370)
at jQuery.fn.init.each (jquery.source.js:137)
at Object.bind (dependent-fields.source.js.coffee:74)
at Object.init.dependentFields (dependent-fields.source.js:2)
at HTMLDocument.<anonymous> (application.source.js:35)
at HTMLDocument.dispatch (jquery.source.js:5226)
at HTMLDocument.elemData.handle (jquery.source.js:4878)
Many plugins append extra inputs to form, without name attributes.
For this reason, this plugin should check if the input has a name attribute, before trying to use it, so the user doesn't get this JavaScript error:
Error happens in this line:
If im not mistaken, it can be fixed by just simply doing this:
or by updating selectors, when binding:
The text was updated successfully, but these errors were encountered: