I am having issues with selecting a certain element in my html
When I click on the link with class "event_rsvp", I want to effect the HTML of the span in the next li with the class of "interested-status" I have tried closest, tried going out to the parents, how do I tell one to talk to the other.
<li rel="101590"><span class="rsvp-status">Are You Going? – <a href="javascript:;" class="event_rsvp" rel="attending">RSVP</a></span></li>
<li rel="101590"><span class="interested-status"> <a href="javascript:;" class="event_likeit" rel="likeit"> Like It?</a></span></li>
IMPORTANT It's probably important to mention that this is a loop and I need it to effect only the one clicked.