I have a unordered list
<ul id="List1">
<li>www.xyz.com</li>
<li>www.abc.com</li>
</ul>
using jquery, i want to convert this li to a link and add font as underline
I am trying it like this
$('li').css('font', 'underline').click(function() {
// how to add hyperlink?
});