I have this:
<th class="day-heading mon" scope="col">
<abbr title="Lunes">L</abbr>
</th>
I need to access the abbr and change the innerHTML and title. How do I do that? I tried doing...
jQuery('.day-heading mon > abbr');
but I can't modify the properties from there.