Struts2 select tag add/remove values using javascript - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T16:32:50Zhttp://stackoverflow.com/feeds/question/760471http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/760471/struts2-select-tag-add-remove-values-using-javascript0Struts2 select tag add/remove values using javascriptHiren2009-04-17T13:41:13Z2009-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#7604920Answer by altCognito for Struts2 select tag add/remove values using javascriptaltCognito2009-04-17T13:48:10Z2009-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><select>
<option>Jan
<option>Feb
<option>Mar
<option>Apr
<option>Jun
</select>
<input type="button" id="removeJanuary" value="Remove January">
<script>
$(function() {
$('#removeJanuary').click(function() {
$("option:contains('Jan')").remove();
});
});
</script>
</code></pre>
<p>See example: <a href="http://jsbin.com/ajoqa" rel="nofollow">http://jsbin.com/ajoqa</a></p>