This was tough, but I think I’ve got it figured out.
First up, you’ll need to install the fantastic
AnchorsAway plugin by OpenGeek (
http://modxcms.com/forums/index.php/topic,15753.0.html).
Then in the CodaSlider js file, on line 165 change:
targetPanel = parseInt($(this).attr("href").slice(1));
--to--
target = $(this).attr("href");
targetPanel = $(this).attr("href").slice(target.length - 1);
Basically what I could see happening was that targetPanel was returning NaN. Normally the links were all "#1, #2, #3" etc. so the slice function worked fine. But with the above plugin changing the links to "mypage.html#1, mypage.html#2" etc., it threw everything out.
There may well be a more elegant way to do this, so please post if you have such a solution.
Haven’t tested yet, but all this should work fine with Ditto or even generating the links with WayFinder (which is what I intend to do later).
Excelsior!