I have the following dynamic output generated by Joomla for page navigation.
<ul>
<li class="pagination-start">
<span class="pagenav">Start</span>
</li>
<li class="pagination-prev">
<span class="pagenav">Prev</span>
</li>
<li>
<span class="pagenav">1</span>
</li>
<li>
<a title="2" href="link-to-page-2" class="pagenav">2</a>
</li>
<li class="pagination-next">
<a title="Next" href="link-to-next-page" class="pagenav">Next</a>
</li>
<li class="pagination-end">
<a title="End" href="link-to-last-page" class="pagenav">End</a>
</li>
</ul>
I need only the link data of the next page i.e. link-to-next-page which is wrapped by <li class="pagination-next"></li>
I need to do it in PHP so that I can make use of the same the same for my Infinite Scrolling plugin.
I can do it through jQuery but it will not serve the purpose. I am looking for a PHP solution to get this.
Can someone please help me?