Adding options to a using jQuery? This did NOT work in IE8 (yet did in FF): $("#selectList").append(new Option("option text", "value")); This DID work: var o = new Option("option text", "value"); /// jquerify the DOM object 'o' so we can use the html method $(o).html("option text"); $("#selectList").append(o); Categories javascript Tags html-select, javascript, jquery What is the equivalent of Java’s final in C#?Unity: “The referenced script (Unknown) on this Behaviour is missing!” Leave a Comment Cancel replyCommentName Email Website Save my name, email, and website in this browser for the next time I comment.