Floes3
Gebruiker
- Lid geworden
 - 19 sep 2010
 
- Berichten
 - 132
 
Hallo, ik ben bezig met een count down timer.
ik krijg alleen de bovenstaande error en kan niet vinden waarom.
zou iemand mij hier mee kunnen helpen?
[js]
$(window).resize(function(){
$("#DateCountdown").TimeCircles().rebuild();
});
			
$("#DateCountdown").TimeCircles({
"animation": "smooth",
"bg_width": 0.5,
"fg_width": 0.023333333333333334,
"circle_bg_color": "#60686F",
"time": {
"Days": {
"text": "Days",
"color": "#FFCC66",
"show": true
},
"Hours": {
"text": "Hours",
"color": "#99CCFF",
"show": true
},
"Minutes": {
"text": "Minutes",
"color": "#BBFFBB",
"show": true
},
"Seconds": {
"text": "Seconds",
"color": "#FF9999",
"show": true
}
}
});
[/js]
de error zit op regel 5
	
	
	
	
		
Alvast bedankt.
Floes
				
			ik krijg alleen de bovenstaande error en kan niet vinden waarom.
zou iemand mij hier mee kunnen helpen?
[js]
$(window).resize(function(){
$("#DateCountdown").TimeCircles().rebuild();
});
$("#DateCountdown").TimeCircles({
"animation": "smooth",
"bg_width": 0.5,
"fg_width": 0.023333333333333334,
"circle_bg_color": "#60686F",
"time": {
"Days": {
"text": "Days",
"color": "#FFCC66",
"show": true
},
"Hours": {
"text": "Hours",
"color": "#99CCFF",
"show": true
},
"Minutes": {
"text": "Minutes",
"color": "#BBFFBB",
"show": true
},
"Seconds": {
"text": "Seconds",
"color": "#FF9999",
"show": true
}
}
});
[/js]
de error zit op regel 5
		HTML:
	
	<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>What is this?</title>
	<style>
		.time_circles .textDiv_Days, .textDiv_Hours, .textDiv_Minutes, .textDiv_Seconds {
			color: #60686F;
		}
		
	
	</style>
	<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
	<script src="script.js"></script>
	<script>
			
</script>
</head>
<body>
	
	<div id="DateCountdown" data-date="2015-03-30 00:00:00" style="width: 100%;"></div>
</body>
</html>
	Alvast bedankt.
Floes