jack3dm,
<!DOCTYPE html>
<html lang="en">
<head>
    <script src="https://code.jquery.com/jquery-2.2.2.min.js"
            integrity="sha256-36cp2Co+/62rEAAYHLmRCPIych47CvdM+uTBJwSzWjI="
            crossorigin="anonymous">
    </script>
</head>
<body>
    <style>
        td {
            border: 1px solid black;
        }
    </style>
    <table>
        <tr>
            <td>Lorem ipsum dolor sit amet</td>
            <td>Velit nesciunt explicabo nam</td>
            <td>24 December 2015 10:10:10 UTC</td>
        </tr>
        <tr>
            <td>Lorem ipsum dolor sit amet</td>
            <td>Velit nesciunt explicabo nam</td>
            <td>1 January 2016 10:10:10 UTC</td>
        </tr>
        <tr>
            <td>Lorem ipsum dolor sit amet</td>
            <td>Velit nesciunt explicabo nam</td>
            <td>30 February 2016 10:10:10 UTC</td>
        </tr>
    </table>
    <script>
var a = new Date("24 October 2016 11:13:00 UTC");
var b = new Date("24 October 2013 11:13:00 UTC");
var localTime = new Date();
$('tr td:last-child').each(function () {
    if (localTime >Date.parse($(this).text())){
		alert('yes');
	} else {
		alert('no');
	}
});
    </script>
</body>
</html>