pjb3 (owner)

Revisions

gist: 218994 Download_button fork
public
Public Clone URL: git://gist.github.com/218994.git
Embed All Files: show embed
links.js #
1
2
3
4
5
6
7
8
9
10
11
12
13
$$('#listholder li').each(function(item, index){
  var url = item.getElement('a').get('href')
  item.addEvent('click', function() {
    document.location = url
    return false
  })
  item.addEvent('mouseenter', function() {
    this.addClass('hover')
  })
  item.addEvent('mouseleave', function() {
    this.removeClass('hover')
  })
})