I have a jquery content slider on a site I'm developing. I am having a strange problem that seems to be across all browsers and that is the slider slides the wrong distance if the page is refreshed via the refresh button.

To re-create the problem please follow these steps -

click this link http://www.aus-media.com/dev/site_BYS/index.html

then click on the 'About Bikram Yoga' menu item at the bottom. Click on the 'more' and 'back' tabs on this page and you will notice it works fine. Then refresh the page by clicking the refresh button and try the more and back buttons again. I'm a bit of a javascript newby so I'm lost to why it's doing this. Any help would be great.

Thanks Nik

link|improve this question

The slider works fine and I can't see a refresh button the page. Refreshing the page with the browser does not break it for me. – Hultner Apr 24 '10 at 19:54
Refresh the browser, I meant the refresh button built into the browser. I have tested it on 3 systems and can assure you its broke =/ – Nik Apr 24 '10 at 20:01
Works in Safari, but I think I see what you mean in Firefox. Specifically (for me anyway) the third slide is shifted slightly to the left after refresh. Is that what you're getting? – user113716 Apr 24 '10 at 20:06
Yeh.. I just checked safari on the mac and its fine. On other browsers when I refresh, the page loads fine but when I go to slide the content it slides the div about 50% too far each time the more or back button is pressed. – Nik Apr 24 '10 at 20:11
The width of your container ul is 3,680 at first, but when you refresh, it changes to 3,972. So it has something to do with how the width of that container gets calculated. – user113716 Apr 24 '10 at 20:12
show 6 more comments
feedback

1 Answer

up vote 0 down vote accepted

Patrick you have lead me in the right direction. All I had to do was set the width of the <ul> inline on the html page. So it read like this -

<ul style="width: 920px">

This stops the width of the <ul> being changed when the page refreshes. I am guessing this is why it's not unusual to see inline styles in these types of situations.

Thanks again!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.