JSFiddle - React, Tailwind, and code Playground
by JeffC
JavaScript
function jsFiddlePage() {
this.color = "blue";
this.jsDropdown = document.getElementById("js_lib");
this.loadDropdown = document.getElementById("id_js_wrap");
this.work = function () {
console.log("work");
};
}
console.clear();
var page = new jsFiddlePage();
console.log(page.color);
var e = document.getElementById("js_lib");
console.log(e.options[e.selectedIndex].label);