Below is my HTML fine. I am getting a blank page as output
<html>
<head>
<script src="jquery-1.11.0.min.js">
</script>
<script>
var content = "<table>"
for(i=0; i<10; i++){
content += '<tr><td>' + 'answer' + i + '</td></tr>';
}
content += "</table>"
$('#myTable').append(content);
</script>
</head>
<body>
<div id="myTable"></div>
</body>
</html>
the output that i expect is answer 1 answer 2 ....... answer 3