I have a really simple problem.
How can I find the first previous element of another element? I tried the code below without success.
HTML:
&
$('.C').click(function() { alert($(this).closest('.B').prev('.A').html()); });