Accordian content is blank on a mobile but works fine on PC browsers
Hello, I am having a strange issue with the jQuery (themeroller) accordian
it is working just fine on a desktop browsers (chrome, IE, FF, Safari) but trying it on my Android phone (S3), produces blank content in some of the panels? or the content will show sporadically.
I'm confused why this is. Is it a bug that accordians produce or am I missing some code that may be needed?
The 3 pages that the accordian's are on are here:
the accordian code is:
- <link href="jQuery/jquery-ui.css" rel="stylesheet">
- <div id="accordion">
- <h3>First</h3>
- <div>1st area's text</div>
- <h3>Second</h3>
- <div>2nd area's text</div>
- <h3>Third</h3>
- <div>3rd area's text</div>
- </div>
- <script src="jQuery/external/jquery/jquery.js"></script>
- <script src="jQuery/jquery-ui.js"></script>
- <script>
-
- $(function() {
- $( "#accordion" ).accordion({
- collapsible: true, active: false, heightStyle: "content"
- });
- });
- </script>
thanks
Sara