Skip to content

Instantly share code, notes, and snippets.

@xenop
Created November 23, 2012 03:09
Show Gist options
  • Save xenop/4133852 to your computer and use it in GitHub Desktop.
Save xenop/4133852 to your computer and use it in GitHub Desktop.
hoge
before:
list.append('<div class="one-fourth" style="margin-top:15px;"><a href="'+h+'" '+s.attr+' title="'+photo['title']+'" target="_blank"><img src="'+t+'" alt="'+photo['title']+'" /></a></div>');
after:
var element = $('<div class="one-fourth" style="margin-top:15px;"><a href="'+h+'" '+s.attr+' title="'+photo['title']+'" target="_blank"><img src="'+t+'" alt="'+photo['title']+'" /></a></div>');
if(i % 4 === 0){
element.addClass('column-first');
}else if(i % 4 === 3){
element.addClass('column-last');
}
list.append(element);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment