Hi,
I am getting the error msg as indicated by the title of this Question. My html file is as follows. My table '#word_freq_table' is defined in one of my js files.
Could anybody help please? Thank you in advance.
best regards
Jim
Here is my html file:
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script type="text/javascript" src="js/jquery-3.3.1.js"></script>
<script type="text/javascript" src="js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="js/datatables.js"></script>
<script type="text/javascript" src="js/datatables.css"></script>
<script src="js/hilitor.js"></script>
<script src="js/sorttable.js"></script>
<script src="js/word_freq.js"></script>
<script src="js/json_to_table.js"></script>
<script src="bower_components/underscore/underscore.js"></script>
<script src="js/lemmatizer.js"></script>
<link rel="stylesheet" type="text/css" href="js/styles.css">
<script type="text/javascript">
$(document).ready(function() {
$('#word_freq_table').DataTable();
});
</script>
</head>
<body>
<div class=col_left>
<div class=upper_left>
Paste your passage here:<p>
<textarea id=input_passage onchange=output_freq(this.value)></textarea>
<p>
<button type=submit id=analyse onclick=output_freq(document.getElementById('input_passage').value)> Analyse</button>
<p>
</div>
<div id=freq></div>
</div>
<div id=output_passage class=col_center></div>
<div id=right_col class=col_right></div>
<script>
</script>
</body>
</html>