im trying to put a little arrow in front of each section here, cant find the correct place outside the a tag with no knowlage of js. can some one please point out the correct position.
<script language="JavaScript" type="text/javascript">
<!--
function YahooSections(ar)
{
var strIDs = '';
for (var i=1;i<=ar.length;i++)
{
if (ar[i].sURL != null)
{
strIDs += '<a href="' + ar[i].sURL + '"><span class="red10"><b>' + ar[i].sName + '</b></span></a><br>';
{
if (ar[i].pChild)
{
for (var j=1;j<=ar[i].pChild.length;j++)
{
if (ar[i].pChild[j].sURL != null)
{
strIDs += '<a href="' + ar[i].pChild[j].sURL + '"><span class="actxxsmall"><strong><font color="NETQUOTEVAR:FGCOLORCSS"><br> <img src="tinyarrow.gif" border="0"> ' + ar[i].pChild[j].sName + '</font></strong></span></a><br>';
}
}
}
}
strIDs += '<br>'
}
}
return strIDs
}
//-->
</script>
<script language="JavaScript" type="text/javascript">
<!--
function YahooSections(ar)
{
var strIDs = '';
for (var i=1;i<=ar.length;i++)
{
if (ar[i].sURL != null)
{
strIDs += '<a href="' + ar[i].sURL + '"><span class="red10"><b>' + ar[i].sName + '</b></span></a><br>';
{
if (ar[i].pChild)
{
for (var j=1;j<=ar[i].pChild.length;j++)
{
if (ar[i].pChild[j].sURL != null)
{
strIDs += '<a href="' + ar[i].pChild[j].sURL + '"><span class="actxxsmall"><strong><font color="NETQUOTEVAR:FGCOLORCSS"><br> <img src="tinyarrow.gif" border="0"> ' + ar[i].pChild[j].sName + '</font></strong></span></a><br>';
}
}
}
}
strIDs += '<br>'
}
}
return strIDs
}
//-->
</script>
Comment