The front end is a problem, there is no access to editing Html markup for certain reasons, but you need to merge options from select into an optiongroup tag, for example, I have points:
<select> <option data-group="first" value="test1"> <option data-group="first" value="test2"> <option data-group="second" value="test3"> </select> I need to convert to:
<select> <optgroup label="first"> <option data-group="first" value="test1"> <option data-group="first" value="test2"> </optgroup> <optgroup label="second"> <option data-group="second" value="test3"> </optgroup> </select> The problem is that this select is custom through the bootstrap. Is it possible to do this through Js?