JSFiddle code not working in browser for sum calculation of row and column..please help me with code
the code is working in jsfiddle but not in my browser..if any addition of aother lines is necessary for work it
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="CoffeeCup HTML Editor (www.coffeecup.com)">
<meta name="dcterms.created" content="Fri, 10 Apr 2015 05:07:13 GMT">
<meta name="description" content="">
<meta name="keywords" content="">
<title></title>
<script src="https://code.jquery.com/jquery-2.0.2.js"></script>
<script>
$(document).ready(function(){
$("table tr > td:nth-child(1) > input:not(#totalSum)").sum("keyup", "#totalSum");
$("table tr > td:nth-child(2) > input:not(#totalSum1)").sum("keyup", "#totalSum1");
$("table tr > td:nth-child(3) > input:not(#totalSum2)").sum("keyup", "#totalSum2")
});
</script>
<!--[if IE]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<table>
<tr>
<td><input type="text" id="1" /></td>
<td><input type="text" id="2" /></td>
<td><input type="text" id="3" /></td>
</tr>
<tr>
<td><input type="text" id="4" /></td>
<td><input type="text" id="5" /></td>
<td><input type="text" id="6" /></td>
</tr>
<tr>
<td><input type="text" id="7" /></td>
<td><input type="text" id="8" /></td>
<td><input type="text" id="9" /></td>
</tr>
<tr>
<td><input type="text" name="totalSum" id="totalSum" value="" readonly="readonly" /></td>
<td><input type="text" name="totalSum" id="totalSum1" value="" readonly="readonly" /></td>
<td><input type="text" name="totalSum" id="totalSum2" value="" readonly="readonly" /></td>
</tr>
</table>
</body>
</html>