2
[STUDY ONLY]
When clicking a button, I need to make the function apply a width to the elements with the class "border_title_result".
function spanSize(){
                var div = document.getElementById('title_result');
                var size = 700 - div.offsetWidth;
                var f = size + "px";
                console.log(f);
                document.getElementsByClassName('border_title_result').style.width = f;
            }
The width is defined according to the size of a div - 700px;
I’ve tested it using 'getElementById' for only one element, but I don’t know how I can apply this same css to several elements.
The elements are dynamic, they are written using PHP, so I can’t just make a variable for each element id.
This is purely for study, I just want to learn how to plicate js using class.
John, take a look at the duplicate, the principle is the same. Have to use
forto traverse the elements by the class.– Sam