So my header looks like this...
<html lang="en">
<head>
<meta charset="utf-8">
<title>Deschutes Pine</title>
<link rel="stylesheet" href="Crew.css">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src = "/Script.js"></script>
<link href='http://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
And my Javascript looks like this:
/*jslint browser: true*/
/*global $, jQuery*/
$(document).ready(function () {
$('.faces').hide();
});
Ive already tried posting the js in script tags and it ran smooth , so the problem is its finding the way to my js file. Script.js is in the same folder so it's not that.