Quote Originally Posted by brittainmark View Post
Have managed to fix the error. It requires two changes to the YOURSITE\includes\templates\responsive_sheffield_blue\jscript\jQuery_ui.spinner. js

Lines 25 to 26
Change
PHP Code:
    msie = $.browser.msie,
    
mouseWheelEventName = $.browser.mozilla 'DOMMouseScroll' 'mousewheel'
to
PHP Code:
    msie navigator.userAgent.match(/msie/i),
    
mouseWheelEventName 'onwheel'
The first line is changed because browser has been depreciated in Jquery. It could also be because of the $. depending on the version of Jquery you are using. I changed the second line because the event on allmodern browser is onwheel. It wont work on firefox 16 and before I have not been able to find out where the other browsers stopped using mousewheel. If you want to catch all the events it would take a bigger code change.

The warning is because you may not load the internet version of Jquery on a slow network. These days it is recommended that you load it from Google or microsoft. I would not worry about it for now. Don't know it we need to request zen cart move to this version.
Great, thank you for posting this solution. I am sure that it will help others ;)

Thanks,

Anne