I have 4 different files I downloaded from here -->
http://codepen.io/wallaceerick/pen/fEdrz/
Its an upload button styled with css and javascript.
According to this post (How do i combine html, css and javascript coding to make my carousel work?)
I put everything into 4 seperate files and referenced them in the html file. But I still can't get it to work, maybe you guys can help me find my mistake.
HTML:
<!DOCTYPE html>
<html lang"en">
<head>
<meta charset="utf-8">
<title>...</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="jscript.js"></script>
<script src="jquery-2.0.0.min.js"></script>
</head>
<body>
<h1>Custom File Upload <span>With jQuery and CSS</span></h1>
<div class="custom-file-upload">
<!--<label for="file">File: </label>-->
<input type="file" id="file" name="myfiles[]" multiple />
</div>
</body>
</html>
The 3 other files (jscript.js, style.css and jquery-2.0.0.min.js) are in the same directory and have the exact names like in the HTML file. When i try opening it locally with Chrome, it doesn't work. Where is my mistake?