We can assign a title (attribute title
) to a markup element in HTML that has this class, like this:
$(".title-texto").attr("title", $(".title-texto").text());
Example of HTML markup with only one element with class:
{<ul class="miniaturas">
<li>
<a href="link1.html">
<img src="img/imagem1.png" >
<p class="title-texto" >texto 1 escrito no html, com o title atribuido no Jquey</p>
</a>
</li>
</ul>}
How could I assign title
different to elements <p>
that has the same class?
<ul class="miniaturas">
<li>
<a href="link1.html">
<img src="img/imagem1.png">
<p class="title-texto" >texto 1 escrito no html, com o title atribuido no Jquey</p>
</a>
</li>
<li>
<a href="link2.html">
<img src="img/imagem2.png">
<p class="title-texto" >texto 2 escrito no html, com o title atribuido no Jquey</p>
</a>
</li>
<li>
<a href="link3.html">
<img src="img/imagem3.jpg">
<p class="title-texto" >texto 3 escrito no html, com o title atribuido no Jquey</p>
</a>
</li>
</ul>