This doesn't display css box. I deleted cookies and run as Chrome.
It's weird.. It results from Notepad++ bug...
Solved... It was Editor problem...
on Notepad++, Xampp
---------------------------------------------
[File 1 - failed.html ]
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>finish demo</title>
<style>
#b2{
position: absolute;
left: 50px;
top: 330px;
width: 40px;
height: 40px;
background: red;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<div id="b2"> </div>
<button id="loop_start"> Loop Start </button>
</body>
</html>
=======================================================
[File 2 - Sucess Html ]
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>animate demo</title>
<style>
#b2{
position: absolute;
left: 50px;
top: 330px;
width: 40px;
height: 40px;
background: red;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<div id="b2"> </div>
<button id="loop_start"> Loop Start </button>
</body>
</html>