-1

I have strange behavior with Jquery. Please open http://westminster.percipio.me/index2 in firefox, it should slide screens and also panel a bit bottom " University of Westminster Courses News Business Schools Alumni" also animated and works as need. Then if you open in opera or chrome animation with slides will not work. Please help me figure it out.Thanks

Sparky
  • 98,165
  • 25
  • 199
  • 285
Oleksandr IY
  • 2,783
  • 6
  • 32
  • 53
  • 1
    Wow, there's some strange HTML in there: - why not just add a class to the anchor and use the CSS background there? – Diodeus - James MacFarlane Mar 29 '12 at 21:01
  • Add Safari to your list of browsers where it does not work. – Sparky Mar 29 '12 at 21:05
  • Your code is a mess. Please post the relevant JavaScript and HTML within the question. Why include the Slider JS within the middle of the page? Also, why write the slider code from scratch when so many solid jQuery slider plugins are available? – Sparky Mar 29 '12 at 21:12
  • client wants exactly that implantation and I couldn't find appropriate slider for that. He wants slider as on bbc.co.uk they provide their glow api but it is very heavy and I couldn't set it properly. Also need to work it in js off mode – Oleksandr IY Mar 29 '12 at 21:18

1 Answers1

0

The problem was in left offset value. Opera returns left offset like auto against FF is 0px. Just need add a check left_indent = isNaN(left_indent) ? 0 : left_indent;

Oleksandr IY
  • 2,783
  • 6
  • 32
  • 53