darkwing (owner)

Revisions

  • 0a77d9 darkwing Fri Oct 16 14:37:20 -0700 2009
  • 8d6253 kevinva... Fri Oct 16 13:00:53 -0700 2009
gist: 212087 Download_button fork
public
Public Clone URL: git://gist.github.com/212087.git
Embed All Files: show embed
HTML #
1
2
3
<div id="fellows" data-url="/fellows">
  <!-- list of fellows -->
</div>
JavaScript #
1
2
3
4
5
6
7
8
9
Element.implement({
  reload: function() {
    var url = this.get('data-url');
    if(url) this.load(url);
  }
});
 
// perhaps in an onSuccess request callback
$('fellows').reload();