Closed jd19007 closed 12 years ago
Line number may be wrong due to I pasted it in my app.js with some changes.
Yup @jondavis0787, updated and pushed the fix. Thanks!
@smileyj68 @mrsweaters this can be closed.
I just pulled the newest version of the customForms plugin (with this fix applied) and I still seem to be getting the value
attribute of the option
instead of the .html()
. Is there anything else related to this that I need to update?
line 345-347 shouldn't it be
if ($currentSelect) { $currentSelect.html( $( this ).html() ); }
instead of
if ($currentSelect) { $currentSelect.html( this.value ); }
So that it will get the html value and not the value by default?