Jquery not working at all =/
I looked through a few threads but couldn't figure out why my script isn't working =/ I decided to test out something simple with Jquery before trying to build my portfolio. This is my script:
HTML
- <!DOCTYPE html>
- <html>
- <head>
- <title>Portfolio</title>
- <link rel='stylesheet' type='text/css' href='stylesheet.css'/>
- <script type='text/javascript' src='script.js'></script>
-
- </head>
- <body>
- <div class ="topbar"></div>
- </body>
- </html>
CSS
- .topbar {
- height: 100px;
- width: 100%;
- border-radius: 5px;
- background-color: #008800;
- }
Jscript
- $(document).ready(function() {
- $('div').click(function() {
- $(this).fadeOut('slow');
- });
- });
I'm really unsure why this isn't working. I've tried a few other browsers (Mozilla, Opera etc...) and still not working.