Lines Matching refs:option
33 var group_position, option, _i, _len, _ref, _results;
47 option = _ref[_i];
48 _results.push(this.add_option(option, group_position, group.disabled));
53 SelectParser.prototype.add_option = function(option, group_position, group_disabled) { argument
54 if (option.nodeName.toUpperCase() === "OPTION") {
55 if (option.text !== "") {
62 value: option.value,
63 text: option.text,
64 html: option.innerHTML,
65 title: option.title ? option.title : void 0,
66 selected: option.selected,
67 disabled: group_disabled === true ? group_disabled : option.disabled,
70 classes: option.className,
71 style: option.style.cssText