-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
When option elements are created dynamicly, the values need to be encapsulated.
Right now, this is not the case, resulting in broken html when values contain spaces.
To fix this, change:
document.getElementById(this.selector).insertAdjacentHTML('beforeend',
"<option "+change_img+" "+change_icon+" "+change_separator+" "+change_disabled+" value="+properties.options[i].value+" >"+properties.options[i].inner_text+"</option>");
To:
document.getElementById(this.selector).insertAdjacentHTML('beforeend',
"<option "+change_img+" "+change_icon+" "+change_separator+" "+change_disabled+" value=\""+properties.options[i].value+"\" >"+properties.options[i].inner_text+"</option>");
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels