Skip to content

Instantly share code, notes, and snippets.

@onedesign
Created August 17, 2009 23:23
Show Gist options
  • Save onedesign/169443 to your computer and use it in GitHub Desktop.
Save onedesign/169443 to your computer and use it in GitHub Desktop.
$("#add_to_team").live("click", function() {
var player_href = $(this).attr('href')
var player_slug = player_href.substring(player_href.search(/[a-z]+-[a-z]+$/));
$.post('/fantasy_team_players', {id: player_slug}, function(data) {
success: $("#add_to_team").html("added to your team")
}, "json");
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment