Whilst working with some of the scripts provided in the AUG, I've found a couple of syntax errors
Page 36
Creating a List of Hyperlinks with Sections and Two Levels of Sub-sections
in line
there's a missing '
it should read
Other error is in line
there's an extra =
it should read
Hope this helps other poor souls trying to integrate it!
Cheers
Jos
Page 36
Creating a List of Hyperlinks with Sections and Two Levels of Sub-sections
in line
Code:
class="actxxsmall">' + ar[i].sName + </span></a></td></tr></table>';
it should read
Code:
class="actxxsmall">' + ar[i].sName + '</span></a></td></tr></table>';
Code:
strIDs += '</table>'
it should read
Code:
strIDs + '</table>'
Cheers
Jos
Comment