質問

I've a test website on http://insstock.info/xxx/

With two sliders inserted into it:

  1. Nivo Slider
  2. DIV Content Jquery slider (Exact below of Nivo Slider)

second slider is expected to flip the content one by one; the code and scripts are set accordingly!

It is showing no error in Chrome developer tool Console panel!

Can anyone Please help me to making this second slider work?

役に立ちましたか?

解決

A couple of suggestions that I run through when I experience this behavior.

1) Clear the Chrome Cache

Chrome caches aggressively and frequently will return stale resources. You can clear the cache either by using Ctrl+Shift+Del, or prevent its use on the page by opening up Chrome Developer tools, clicking the gear icon in the bottom right, and checking "Disable Cache". Then reload the page with Ctrl+Shift+R. This will ensure you have the latest version of your resources.

2) Check the Network tab for any resources which are failing to load

3) Step through your code in the debugger to try to identify where things go wrong.

4) Start removing pieces more and more pieces of your code until you have a very small set that is exhibiting the issue. This is a great strategy for debugging generally, since it is much easier to debug something small than something big.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top