I am getting the following error below on a few pages. However, It only seems to occur on pages that have a certain customized skin. I have read articles about similar errors, which stated that if there are JQuery references, i.e.(<script src="http://code.jquery.com/jquery-latest.min.js"></script> )within an .aspx page, that they can conflict with built in DNN references, causing the jQuery library not to load properly. This leads to a method not found error on JQuery calls. Any thoughts on what might be the issue here, with regards to the customized skin?
<script type="text/javascript">
jQuery(document).ready(function ($) {
if (!$(".dnnControlPanel").data("loaded")) {
var yesText = 'Yes';
var noText = 'No';
var titleText = 'Confirm';
// Client IDs for the following three have _CPCommandBtn appended as a rule
$('#dnn_RibbonBar_DeletePage_CPCommandBtn').dnnConfirm({
Uncaught TypeError: Object [object Object] has no method 'dnnConfirm'
text: 'Are you sure you want to delete this page?',
yesText: yesText,
noText: noText,
title: titleText
});