i have this
<p class="comment_date" title="a">c</p>
<p class="comment_date" title="b">b</p>
i want put the title in the html of any element. so i try with this:
$(".comment_date").html($('.comment_date').attr("title"));
But it's wrong
how i can do it?
thanks