Last active
December 16, 2015 20:12
-
-
Save erikhazzard/af39b59b2e6b8255bde2 to your computer and use it in GitHub Desktop.
Mixpanel set avatar image URL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#userlist_wrapper .grid_row').each(function(i, el){ | |
var el = $(el); | |
var id = el.attr('data-distinct_id'); | |
$('.avatar_cell img', el).attr( | |
'src', | |
'YOUR_URL_FOR_IMAGE/' + id + '.gif' | |
); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment