<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<style type='text/css'>
.last {
border: 1px solid blue;
}
</style>
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){
$(".feed_wrapper > li:last-child").addClass("last");
});//]]>
</script>
</head>
<body>
<ul class="feed_wrapper">
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
</body>
</html>