I created a table in jsFiddle that looks fantastic, but when I try to transfer the code into a local .html file, all I get is a blank page. I've been searching for a solution for quite some time now and keep coming across mentions of the page loading after the JavaScript executes, along with references to $(document).ready. However, as someone who is new to JavaScript, I must admit that I am feeling a bit lost.
Here is the link to my jsFiddle: http://jsfiddle.net/DBF5q/29/
Below is the snippet of HTML code where I am trying to integrate the table:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Find User</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<style>
<!-- CSS CODE HERE -->
</style>
<script type="text/javascript">
<!-- JS CODE HERE --->
</script>
</head>
<body>
<div class="Web_OnlineTools_Table" >
<table id="contact"></table>
</div>
</body>
</html>
I would greatly appreciate any solutions or advice you might have to offer. Thank you.