I tried to use vvvv.js.
I made a webpage:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>VVVV</title>
<script language="JavaScript" src="vvvv_js/lib/jquery/
jquery-1.7.1.min.js"></script>
<script language="JavaScript" src="vvvv_js/vvvv.js"></script>
<script language="javascript">
var patch;
var mainloop;
$(document).ready(function() {
try{
initVVVV('vvvv_js','full');
patch = new VVVV.Core.Patch("s001.v4p", function() {
mainloop = new VVVV.Core.MainLoop(this);
});
}
catch(er){
document.write(er);
}
});
</script>
</head>
<body>
<div id="message">
123456
</div>
</body>
</html>
The error is: Syntax error, unrecognized expression: [src*=d3.js]
I found this expression in vvvv.js (row 22), but I didn't change it.
What is wrong?