I have five links rendered at page that represents navigation header of the page, also I have 5 divs rendered on the same page. that caries the content of the page. Each link in header is related to the one div with content. When clicking on the links one div is showed with jQuery function .show() and all the others are hidden with jQuery function .hide()
The problem is when page is opened in IE 6 browser, after 2 or 3 clicks on links page gets rendered wrongly. Div with content are mixed.
I have tried to click on links slowly but problems remains, so it is not because of slow processing in IE 6.
What could cause this problem?
Is there any solution for this?
Did someone have similar problems?
Thanks a lot.
Don’t use toggle for this since you will keep state (clicked|not clicked) as well
A simple click method will do, showing content and hiding siblings
A solution for you http://jsfiddle.net/48LEq/
HTML:
CSS
JS