jQuery-MultiSelect
jQuery-MultiSelect copied to clipboard
XSS vulnerability in _addOption
There's a XSS vulnerability when options data has executable JS content.
Under _addOption function (line:874), the initialization of thisOption var is using .html which allows executable JS contents to run.

Changing the .html to .text will fix the issue.