All pastes #2123282 Raw Edit

Mine

public text v1 · immutable
#2123282 ·published 2012-03-01 17:48 UTC
rendered paste body
the goal is to declare a span with 2 divs in it... how do i do this? this is wrong...

var liHeaderC1 = $('<div/>', {
    class: 'column-1',
    html: 'sitename.com'
});

var liHeaderC2 = $('<div/>', {
    class: 'column-2',
    html: '99'
});

var liHeaderSpan = $('<span/>', {
    class: 'contacts_wrapper',
	html: liHeaderC1 + liHeaderC2
});