0

My problem is when I click on slider button/point work properly, but after 4-5 time clicked it was stuck. I have also find solution but not given proper solution.

Also See link

Thank you

eBizTrait
  • 43
  • 3
  • I got an `Uncaught RangeError: Maximum call stack size exceeded prototype.js:1131` error in my Chrome Console at your site. Could that have anything to do with your slider? – Mandy Schoep Jan 18 '14 at 14:43
  • Does the answer on [this question](http://stackoverflow.com/questions/8724691/nivoslider-not-working-smoothly-on-magento) maybe solves your problem? (Replacing `$.fn._reverse = [].reverse;` with `$.fn._reverse = []._reverse;` in one of the nivoslider js files.) – Mandy Schoep Jan 18 '14 at 14:48
  • @RoySchoep: ok but how can i resolve this error. – eBizTrait Jan 18 '14 at 14:49
  • Open [this file](http://www.oxygenhairsalon.co.uk/skin/frontend/default/hellomix/js/jquery.nivo.slider.js) in you editor and replace `$.fn._reverse = [].reverse;` with `$.fn._reverse = []._reverse;` [This file](http://pastebin.com/0Yzq8EvU) is the file you need (already edited it for you). – Mandy Schoep Jan 18 '14 at 14:50
  • @RoySchoep: can you post your answer as 'Answer' then i will accept it. – eBizTrait Jan 20 '14 at 10:28

1 Answers1

1

Open this file in you editor and replace

$.fn._reverse = [].reverse;

with

$.fn._reverse = []._reverse;

This is the edited jquery.nivo.slider.js file.

Similar question on StackOverflow

Community
  • 1
  • 1
Mandy Schoep
  • 942
  • 11
  • 19