I'm not sure, but it appears to be an encoding issue. However, even if it is, I would expect a different sort of error. Oh, and the order of elements in the head is all wrong. In any case, the jQuery 1.8.2 script isn't being loaded or isn't being read properly, because neither $ nor jQuery are defined. Try changing:
Code:
<head>
<script type="text/jscript" src="js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="js/filter.js"></script>
<script type="text/javascript" src="js/reset.js"></script>
<meta charset="UTF-8">
<title>GDU:Software List</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
to:
Code:
<head>
<title>GDU:Software List</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/jscript" src="js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="js/filter.js"></script>
<script type="text/javascript" src="js/reset.js"></script>
</head>
The browser cache may need to be cleared and/or the page refreshed to see changes.
If that still doesn't get it, then try using the Google hosted version of the script:
Code:
<head>
<title>GDU:Software List</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script type="text/javascript" src="js/filter.js"></script>
<script type="text/javascript" src="js/reset.js"></script>
</head>
Again, the browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks