I have the jQuery jvert-tabs plugin enabled and within it I have a different CSS-only slideshow for each tab. It's a monstrous quantity of pictures for each tab so I'm trying to use PHP's scandir to make the updating of images a bit simpler. The function to trigger vtabs is:
$("#vtabs").jVertTabs({
equalHeights: true
});
// add click events for open tab buttons
$("input[id^=openTab]").each(function(index){
$(this).click(function(){
openTab("#vtabs",index);
return false;
});
});
function openTab(tabId,index){
$(tabId).jVertTabs('selected',index);
}
And on my HTML everything I wan to be a part of a tab goes inside a [div id="vatbs"]. This is a simplified version of my HTML:
<div id="vtabs5">
<div>
<ul>
<li><a href="#vtabs-content-a">Tab 1</a></li>
</ul>
</div>
<div id="#vtabs-content-a">
<ul class="slider"> <!--main image-->
<li id=""><img src="path/img.jpg" alt="" /></li>
<li id=""><img src="path/img.jpg" alt="" /></li>
</ul>
<ul class="thumb"> <!--thumbnails-->
<li><a href="#"><img src="path/img.jpg" alt="" /></a></li>
<li><a href="#"><img src="path/img.jpg" alt="" /></a></li>
</ul>
</div>
</div> <!--end vtabs-->
What I'm doing is coding the following inside the [ul] tags for the main image:
`<?php
$featured_dir = 'path/';
$scan = scandir($featured_dir);
echo '<li id="' . $scan[2] . '"><img src="' . $featured_dir . $scan[2] . '" /></li>';
?>`
And this for the thumbnails:
`<?php
$dir = 'path/thumbs/';
$scan = scandir($dir);
for ($i = 0; ;$i<count($scan); $i++) {
if($scan[$i] != '.' && $scan[$i] != '..') {
echo '<li><a href="#"><img src="' . $dir . $scan[$i] . '" alt="' . $scan[$i] . '" /></a></li>';
}
};
?>`
I've tried the code alone and it works, but the moment I put it inside [div id="vtabs"] the main image briefly flashes and then disappears, and when I click a thumbnail the main image opens in a new page when it's supposed to open in the same, just above the thumbnails.
Sorry if this is too long, I tried to simplify it the best I could. Thank you for any help :)