Skip to content

Instantly share code, notes, and snippets.

@melnik88
Created March 11, 2014 06:21
Show Gist options
  • Save melnik88/9480517 to your computer and use it in GitHub Desktop.
Save melnik88/9480517 to your computer and use it in GitHub Desktop.
$(window).load(function() {
var countArray = [100,54,13]
var counter = 0
$('.social-likes__counter').not(".social-likes__counter_twitter").each(function(){
var num = $(this).text()
var num2 = parseInt(num) + countArray[counter]
$(this).text(num2)
counter++
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment