i am new to CSS and JS.
I am trying to put a 'slider bar' in a page, following this instruction http://jsfiddle.net/juanmendez/v9zkB/. And i put the html, js, css file in the same directory. then i include the js and CSS source in html head as below (also, i included bootstrap files):
<head>
<title>test_slider</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css" />
<script language="javascript" type="text/javascript" src="bootstrap/js/bootstrap.js"></script>
<link rel="stylesheet" type="text/css" href="slider_test.css" />
<script language="javascript" type="text/javascript" src="slider_test.js"></script>
</head>
But there is not effect on html page from the js or css.