I'm just at the point of completing my first Responsive design theme for Silverstripe.
In order to enable a Lightbox function for the client's products I have to call upon a version of jquery.min.js. And in order to have a functional, fold-away two-level navigation bar that works on smartphone screens I need a different version of jquery.min.js.
- • The version of jquery for the navbar function is 1.9.1
• The version used for the lightbox (included in SilverStripe Third Party directory) is 1.7.2
I understand that it is possible to use jquery.noConflict to eliminate conflicts between different version of jQuery. Unfortunately when I use a script to implement this at the base of Page.ss all functionality stops on both jQuery calls.
These scripts are obviously mutually exclusive. Has anybody else struck these issues? How did you fix it?