Hi
I'm trying to create a news list summary section using <ul>
and would like to make the whole <li>
clickable. I'd like to use to first link it finds in the <li>
as the URL so it remains accessible when JavaScript is not enabled...My HTML is:-
<h3>Regional news</h3>
<ul>
<li class="alt clickable">
<h4><a href="/dave.htm">Fusce porta varius eros</a></h4>
<h5>22 Feb 2009</h5>
<p>Donec bibendum, mauris at vulputate vestibulum, nulla odio eleifend sem, in adipiscing orci neque sit amet ipsum.</p>
</li>
<li class="clickable">
<h4><a href="/dave.htm">Praesent turpis tellus, sagittis eu, molestie ac, posuere id, quam</a></h4>
<h5>18 Feb 2009</h5>
<p>Aliquam mollis. Aliquam erat volutpat. Nulla ultricies ullamcorper magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque hendrerit rhoncus dui.</p>
</li>
<li class="alt clickable">
<h4><a href="/dave.htm">Vivamus libero est, pulvinar vitae, dignissim ut, mollis non, tellus</a></h4>
<h5>24 Feb 2009</h5>
<p>Morbi quis felis. Nunc hendrerit nibh porttitor leo. Aenean ut ipsum sit amet est feugiat bibendum. Vivamus adipiscing purus sed ipsum.</p>
</li>
</ul>
<p class="moreregionalnews"><a href="#">View more regional news</a></p>
So basically when the user hovers over the whole panel, there is a rollover on the whole <li>
not just the <h4>
tag...but use the URL contained in the <h4>
tag as the link...
I hope I explained that sensibly...I think I confused myself there :)
Cheers
Adam