Skip to content

Instantly share code, notes, and snippets.

@suderman
Created September 16, 2011 21:24
Show Gist options
  • Save suderman/1223194 to your computer and use it in GitHub Desktop.
Save suderman/1223194 to your computer and use it in GitHub Desktop.
var links = '';
$$('.career-opportunity').each(function(div){
links += '<li><a href="#'+ div.id + '">' +
div.down('td').innerHTML +
'</a></li>';
});
$('side').insert('<ul>' + links + '</ul>');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment