jQuery: How to determine which <li> tag was clicked?
- by user337909
I am creating a form with 5 lines of text, and each text I am allowing the user to select if they want the text to be centered, left, or right justified. I have a unnumbered list with list elements x5.
<li><img src="images/justify_left.png" alt="left" /><span>Justify Left</span></li>
<li><img src="images/justify_center.png" alt="center" /><span>Justify Left</span></li>
<li><img src="images/justify_right.png" alt="right" /><span>Justify Left</span></li>
Each of the 5 set of <li> items refers to its respective line.
With jQuery, how would I go about determining which of the 15 <li> items did the user select so that I can correspond the proper justification as a post method?