Skip to content

Instantly share code, notes, and snippets.

@fernandezpablo85
Forked from JuliaGabellone/bla.js
Created July 13, 2012 20:07
Show Gist options
  • Save fernandezpablo85/3107080 to your computer and use it in GitHub Desktop.
Save fernandezpablo85/3107080 to your computer and use it in GitHub Desktop.
algo.append($("<div>").attr("class", "people-panel-item-table-row-cell")
.append($("<div>").attr("class","info-header-name")
.attr("id", "info-header-name-" + item.index)
.html(item.contact.displayName()))
var infoHeader = $("<div>").attr("class","info-header-name")
.attr("id", "info-header-name-" + item.index)
.html(item.contact.displayName();
var peoplePanel = $("<div>").attr("class", "people-panel-item-table-row-cell");
peoplePanel.append(infoHeader);
algo.append(peoplePanel);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment