So the question is:
Is it possible to copy data from an element selectwithout additional plugins (jQuery is fine, but nothing else), for example:
stack overflow
The main problem here is:
var copyTextarea = document.querySelector('.js-copytextarea');
copyTextarea.select();
If we work with textarea- everything is in order, but for selectit it is not applicable. I cannot select data inside an element select.
Any ideas guys?
Use case: I want to set the function in onchangeevent for an element selectwith a list of values, copy these values ββand paste into textareaor another element, it does not matter