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
If your form has a multiselect (<select multiple>), then the form processing done by History.js fails to read its selected values correctly. The issue is on this line:
for(vari=0,len=elements.length,el;i<len;i++){el=elements[i]varname=el.nameif(!name)continuevarvalue=el.value// <== breaks with <select multiple>...
I think that just returns the first selected element, which isn't usually what you want...
The text was updated successfully, but these errors were encountered:
If your form has a multiselect (
<select multiple>
), then the form processing done by History.js fails to read its selected values correctly. The issue is on this line:I think that just returns the first selected element, which isn't usually what you want...
The text was updated successfully, but these errors were encountered: