var select = document.getElementById("selectbox"); //1 var option = document.createElement('option'); option.text = "XYZ"; select.add(option); the "selectbox" is the ...
Front end developer | React js | Next js | Javascript | Tailwind | Bootstrap | Material Ui | Figma | Sass | Firebase | Git & GitHub | Vercel | Node js | Express js ...
the Tag name in statement defines the HTML element to be created. for the same purpose the createElement() is used. in a larger scale we can make option in the select box options using the same method ...