_Eldar_,
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<style type="text/css">
.abc{
background: #FF33FF;
}
</style>
<script type="text/javascript">
$.fn.replaceText = function (e, f, g) {
return this.each(function () {
var a = this.firstChild,
c, b, d = [];
if (a) {
do 3 === a.nodeType && (c = a.nodeValue, b = c.replace(e, f), b !== c && (!g && /</.test(b) ? ($(a).before(b), d.push(a)) : a.nodeValue = b));
while (a = a.nextSibling)
}
d.length && $(d).remove()
})
};
$(window).load(function () {
$("td:nth-child(2)").replaceText(/\s+\S+$/, '')
.addClass('abc')
});
</script>
<title></title>
</head>
<body>
<table>
<tr><td>1</td><td>12.02.2015 16:46:00</td><td>1</td></tr>
<tr><td>1</td><td>12.02.2015 20:46:00</td><td>1</td></tr>
<tr><td>1</td><td>12.02.2015 19:46:00</td><td>1</td></tr>
<tr><td>1</td><td>12.02.2015 15:46:00</td><td>1</td></tr>
</table>
</body>
</html>