Jeff Walden
Registered User
Post count: 1
|
When I have this add-on enabled some of the other scripts on my website seem to stop working. Examples of these scripts are:
<!-- Confirm Delete --> <script language="JavaScript" type="text/javascript"> function confirmDelete(delUrl) { if (confirm("Are you sure you want to delete this item?")) { document.location = delUrl; } } </script>
<!-- Confirm Undelete --> <script language="JavaScript" type="text/javascript"> function confirmUndelete(delUrl) { if (confirm("Are you sure you want to undelete this item?")) { document.location = delUrl; } } </script>
<!-- Confirm Reset --> <script language="JavaScript" type="text/javascript"> function confirmReset() { if (confirm("Are you sure you want to clear this form?\n\nYour changes will be lost.")) { document.forms[0].reset(); } } </script>
Has anyone else experienced issues such as this?
|