Hi,
I'm currently trying to implement expanding text to links. However, as the links are created dynamically I need to be able to make the DIVs Id-tag 'general' in the script.
So, instead of this:
function pageLoad() {
collapseAll($('myvar_1','myvar_2','myvar_3));
}
I would like something like this:
function pageLoad() {
collapseAll($('myvar_#));
}
But I have no idea how to accomplish that.
Thanks