JSFiddle - React, Tailwind, and code Playground
by Arnaud
HTML
<div class="make-item">
<img src="https://www.master-automobiles.fr/wp-content/uploads/2018/02/berlines.png" title="Particulier">
<a href="https://www.master-automobiles.fr/vehicle_type/particulier/">Particulier <span>(95)</span>
</a>
</div>
<div class="make-item">
<img src="https://www.master-automobiles.fr/wp-content/uploads/2018/02/suv.png" title="SUV & 4x4">
<a href="https://www.master-automobiles.fr/vehicle_type/suv-et-4x4/">SUV & 4x4 <span>(2)</span>
</a>
</div>
<div class="make-item">
<img src="https://www.master-automobiles.fr/wp-content/uploads/2018/02/van.png" title="Utilitaires">
<a href="https://www.master-automobiles.fr/vehicle_type/utilitaires/">Utilitaires <span>(1)</span>
</a>
</div>
<div class="clr"></div>
</div>
JavaScript
var nombre = jQuery('.make-item a span').text();
nombre = nombre.replace('(','');
nombre = nombre.replace(')','');
alert(nombre);