cms ページに次のスクリプトがあります。
window.addEvent('domready', function () {
SqueezeBox.initialize({});
SqueezeBox.assign($$('a.modal'), {
parse: 'rel'
});
});
var j2storeURL = 'http://tours-international.com.gridhosted.co.uk/';
if (typeof (J2Store) == 'undefined') {
var J2Store = jQuery.noConflict();
}
J2Store(document).ready(function () {
J2Store('.j2storeCartForm').each(function () {
J2Store(this).validate({
errorElement: 'em',
errorPlacement: function (error, element) {
error.appendTo(element.parent().parent().next('div'));
},
success: function (label) {
//label.text('Ok').addClass('success');
},
submitHandler: function (form) {
j2storeAddToCart('addtocart', form);
}
});
});
});
jQuery(document).ready(function () {
jQuery('.hasTooltip').tooltip({});
});
上記をループして、次の JS を削除したい:
SqueezeBox.initialize({});
SqueezeBox.assign($$('a.modal'), {
parse: 'rel'
});
これを行うための最も簡単な/最小の方法を教えてください。