Struts2 select tag add/remove values using javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T16:32:50Z http://stackoverflow.com/feeds/question/760471 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/760471/struts2-select-tag-add-remove-values-using-javascript 0 Struts2 select tag add/remove values using javascript Hiren 2009-04-17T13:41:13Z 2009-05-31T22:00:01Z <p>Hi Guys, I wanted to add/remove values from the list box using javascript in struts2. How could I do that?</p> <p></p> <p>Let's say I wanted to remove January from the list or add new month in list by javascript in struts2. how do I will implement it?</p> <p>Thanks in advance.</p> <ul> <li>Hiren</li> </ul> http://stackoverflow.com/questions/760471/struts2-select-tag-add-remove-values-using-javascript/760492#760492 0 Answer by altCognito for Struts2 select tag add/remove values using javascript altCognito 2009-04-17T13:48:10Z 2009-04-17T13:48:10Z <p>Struts2 has nothing to do with it.</p> <p>I recommend you look at jQuery, because it makes this trivial:</p> <pre><code>&lt;select&gt; &lt;option&gt;Jan &lt;option&gt;Feb &lt;option&gt;Mar &lt;option&gt;Apr &lt;option&gt;Jun &lt;/select&gt; &lt;input type="button" id="removeJanuary" value="Remove January"&gt; &lt;script&gt; $(function() { $('#removeJanuary').click(function() { $("option:contains('Jan')").remove(); }); }); &lt;/script&gt; </code></pre> <p>See example: <a href="http://jsbin.com/ajoqa" rel="nofollow">http://jsbin.com/ajoqa</a></p>