I currently have a div setup like this:
<div class="widget-archive-monthly widget-archive widget">
<h3 class="widget-header">Monthly <a href="http://myblog.com/blogs/my_name/archives.html">Archives</a></h3>
<div class="widget-content">
<ul>
<li><a href="http://myblog.com/blogs/my_name/2010/10/">October 2010</a></li>
[...] (and so on)
</ul>
</div>
</div>
I am attempting to extract the URL values inside the widget-content
division using xpath without including any other links like the one for "Archives," resulting in just these specific values:
http://myblog.com/blogs/my_name/2010/10/
http://myblog.com/blogs/my_name/2010/09/
http://myblog.com/blogs/my_name/2010/08/
... and so forth ...