<ul id='myid' >
<li>Microsft Office</li>
<li>Microsft windows XP</li>
<li>Microsft windows Vista</li>
<li>Microsft windows 7</li>
<li>Microsft windows server 2003</li>
</ul>
<input type='button' id='mybutton' value='submit' disabled >
jquery
$("#myid").click(function(){
$("#mybutton").attr("disabled", false);
});
After clicking on the one of the items in LI, the submit button gets enabled. till now all good. But I don't know how to grab the value of the LI which one was clicked (it's suppose to give the value of the li item after clicking of the submit button)
Thanks
Dave