I have a Scriptaculous Slider showing in a modal-dialog window above a Multimap. The problem that I'm having is that on this page the slider handle doesn't move if you try to drag it. If I click on the slider track, the handle correctly jumps to that point and you can then use the handle to drag correctly.
Clicking on the handle successfully registers the click as I can console.log()
the value of the slider at that point. Trying to drag the slider around by it's handle just keeps logging that same value and the handle doesn't move.
The slider works correctly on any page that doesn't have the multimap on it.
There are no other JS frameworks on the pages (just Prototype and Scriptaculous).
I'm really not sure that the problem is though. If the slider wasn't registering anything then that would make sense that the map was ontop somehow or stealing the click event. But the clicks are obviously being recorded. I also don't understand why clicking on the slider track fixes the issue completely.
Can someone point me in the right direction (either with a fix, or a path to take to debug the issue myself).
Things I have tried:
- Setting the z-index of the handle.
- Making the modal-dialog visible to begin with (as it is hidden to start with - I thought it might be related to this issue, but it didn't help).