0

The jssor slide works fine in all browsers (Chrome, FF and Safari) except IE(11). The banner doesn't show the images (all is black) and only shows the loading.gif image frozen. You can see the website here.

I've copied the exactly files and code from the demo content...

Suggestions? ;)

Guatman
  • 21
  • 5
  • You might want to capture an image of the faulty page and put it into the question. then when you have fixed it, your question will still make sense to later readers; whereas the link to the page will soon get out of date. – Brian Tompsett - 汤莱恩 Feb 03 '15 at 14:56

1 Answers1

1

IE can read 'width: 829px;' instead of 'width: 829'

Please replace,

<div id="slider1_container" style="position: relative; top: 0px; left: 0px; width: 829; height: 114px; overflow: hidden; ">

with

<div id="slider1_container" style="position: relative; top: 0px; left: 0px; width: 829px; height: 114px; overflow: hidden; ">
jssor
  • 6,995
  • 2
  • 18
  • 21