FusionCharts と Aloha エディターを同じページに統合しようとしています。Aloha は jquery に依存しているため、それが何らかの競合を引き起こしていると推測していますが、解決できず、一日中苦労しています。どんな助けでも大歓迎です。ありがとうございました
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Getting Started with Aloha Editor</title>
<link rel="stylesheet" href="index.css" type="text/css">
<link rel="stylesheet" href="aloha.css" type="text/css">
<script src="require.js"></script>
<script src="jquery-1.7.2.js"></script>
<script type="text/javascript" src="FusionCharts/FusionCharts.js"></script>
<script src="aloha.js" data-aloha-plugins="common/ui,common/format,common/highlighteditables,common/link"></script>
</head>
<body>
<div id="main">
<div id="content"><p>Getting started with Aloha Editor!</p></div>
<div id="chartContainer">FusionCharts XT will load here!</div>
</div>
<script type="text/javascript">
Aloha.ready( function() {
Aloha.jQuery('#content').aloha();
});
var myChart = new FusionCharts("Column3D", "myChartId", "400", "300");
myChart.setXMLData("<chart caption='Weekly Sales Summary' xAxisName='Week' " +
"yAxisName='Sales' numberPrefix='$'>" +
"<set label='Week 1' value='14400' />" +
"<set label='Week 2' value='19600' />" +
"<set label='Week 3' value='24000' />" +
"<set label='Week 4' value='15700' />" +
"</chart>");
myChart.render("chartContainer");
</script>
</body>
</html>