I'm wondering if it's my load order. I still need the file and dll's to get that template working, but I switched back to what I was doing before.
<script type="text/javascript">
$(document).ready(function () {
$.ajax({
type: "POST",
url: "AdvService.asmx/GetCtcDetails",
data: "{'ID': " + "1"}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: OnSuccess,
error:
});
function OnSuccess(data, status) {
$(".list").html(data.d);
}
function (request, status, error) {
$(".list").html(request.statusText);
}
</script>
Below is the JQuery that sets up the slide show.
<script type="text/javascript">
$(document).ready(function () {
jQuery('div#slideshow-box').append('<div id="slideshow-controller"><span id="nav"></span><span href=" void(0);" id="jqc-prev"></span><span
href=" void(0);" id="jqc-next"></span></div>');
jQuery('div#slideshow-box div.list').cycle({
fx: 'fade',
speed: 1000,
timeout: 5000,
cleartypeNoBg: true,
activePagerClass: 'jqc-active',
pager: '#nav',
prev: '#jqc-prev',
next: '#jqc-next',
pagerAnchorBuilder: function (index, elem) {
return '<button class="jqc-button jqc-button-pages" id="jqc-button-' + index + '" value="' + index + '"><span>' + (index + 1) +
'</span></button>';
}
});
});
</script>