I'm quite new to javascript so there might be a simple solution to my problem. I have made a xml-file where i store information about images i want to add to my webpage, these have tags added. I have found a js-function which will hide/show the images by an on-click link, just as i want. however i would like to show all images with a certain tag at one click and thats where the problem is
<script type="text/javascript">
function unhide(divID)
{
var item = document.getElementById(divID);
if (item)
{
item.className=(item.className=='hidden')?'unhidden':'hidden';
}
}
function ClassTag(Name)
{
var TagNameArrayJS = <?php echo json_encode($TagNameArray); ?>;
var TagArrayJS = <?php echo json_encode($TagArray); ?>;
var PhotoIdArrayJS = <?php echo json_encode($PhotoIdArray); ?>;
var aa = 0;
var bb = 0;
while(aa < TagNameArrayJS.length)
{
if(TagNameArrayJS[aa] == Name)
{
while(bb < TagArrayJS[aa].length)
{
unhide(PhotoIdArrayJS[TagArrayJS[aa][bb]]);
bb = bb + 1;
}
}
aa = aa + 1;
}
}
</script>
output:
<script type="text/javascript">
function unhide(divID)
{
var item = document.getElementById(divID);
if (item)
{
item.className=(item.className=='hidden')?'unhidden':'hidden';
}
}
function ClassTag(Name)
{
var TagNameArrayJS = ["All","Anders","Hanna","Church","Party"];
var TagArrayJS = [[0,1,2],[0],[0,1,2],[0,2],[1]];
var PhotoIdArrayJS = ["JPG001","JPG002","JPG003"];
var aa = 0;
var bb = 0;
while(aa < TagNameArrayJS.length)
{
if(TagNameArrayJS[aa] == Name)
{
while(bb < TagArrayJS[aa].length)
{
unhide(PhotoIdArrayJS[TagArrayJS[aa][bb]]);
bb = bb + 1;
}
}
aa = aa + 1;
}
}
</script>
the html:
<a href="javascript:ClassTag('hanna');">Hanna</a>
I wrote a new function "ClassTag" to call the unhide function at the images i wanted. TagNameArray has the name of the tags, to compare with the called. TagArrayJS has in each position an array with which image-number is to be called. PhotoIdArrayJS has the Id which is used in the unhide function.
So the question, how do i write a function which uses these data to call my unhide function the number of times i want?
/Thanks