jQuery tabs work in Safari and firefox but show up as bullet point in IE
Posted
by
Ria
on Stack Overflow
See other posts from Stack Overflow
or by Ria
Published on 2013-10-30T21:50:10Z
Indexed on
2013/10/30
21:53 UTC
Read the original article
Hit count: 178
jQuery
|jquery-ui-tabs
I am using the jquery tabs . It shows up fine in Safari and firefox, however it will not load correct in IE. They show up as bullet points in stead of tabs.
Here is an example of a page http://www.pianoandkeyboardshoponline.co.uk/Test/detailed_page.php?pro duct_id=302-Casio-CDP120-Digital-Piano-in-Black
<script type="text/javascript">
$(function() {
$("#jQueryTabs").tabs()({
event:"click",
collapsible: false,
selected:'0',
fx: { opacity: 'none', duration: 1 }
}).tabs( "none" , 1 , false );
});
</script>
When I refresh the page the tabs show up, however I want them to show up correct when the page is loaded. Any suggestion welcome
© Stack Overflow or respective owner