How to extract content between anchor tags <a> </a> using Javascript?
Top Questions
In Jquery we can follow the following to iterate the contents.
<?php
$("a[href$='.pdf']").each(function(element) {
$(this).text();
}
?>In Jquery we can follow the following to iterate the contents.
<?php
$("a[href$='.pdf']").each(function(element) {
$(this).text();
}
?>
Post new comment