Skip to content

Instantly share code, notes, and snippets.

@battlejj
Created October 12, 2013 22:53
Show Gist options
  • Save battlejj/6955861 to your computer and use it in GitHub Desktop.
Save battlejj/6955861 to your computer and use it in GitHub Desktop.
var concatAttribute = function(selector, attr){
var returnString = '';
$(selector).each(function(index){
returnString += $(this).attr(attr);
})
return returnString;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment