KitBox autoloads third-party libraries as well as its own libraries making integration a quick and painless process. If you'd like to move some of these libraries around, then you'll have to tell KitBox.
<script>
$('body').kitbox('autoload',{
'disable': ['datatables','jqueryui']
});
$("#kitbox").kitbox({
kitboxType: "kitboxSeries",
dataType: "json",
url: "/pages/series/remote_json.php",
header: {text: "Ajax JSON"}
});
</script>
<head&rt; <script type="text/javascript" src="/lib/datatables/jquery.dataTables.js"></script> <script type="text/javascript" src="/lib/datatables/ColVis.min.js"></script> <script type="text/javascript" src="/lib/datatables/ColReorder.js"></script> <script type="text/javascript" src="/lib/datatables/ColReorderWithResize.js"></script> <script type="text/javascript" src="/lib/jqueryui/jquery-ui-1.8.18.custom.min.js"></script> <link type="text/css" rel="stylesheet" href="/lib/datatables/css/jquery.dataTables.css"/> <link type="text/css" rel="stylesheet" href="/lib/datatables/css/ColReorder.css"/> <link type="text/css" rel="stylesheet" href="/lib/datatables/css/ColVis.css"/> <link type="text/css" rel="stylesheet" href="/lib/jqueryui/css/jquery-ui-1.8.18.custom.css"/> </head>