So I am pulling information from google calendar and I need to divide the variables I am receiving so I can display them in different divs. So what i need to do is something like this
var divMonth = '<div id ="rawr">';
var divMonthClose = '</div>';
dateString = divMonth + monthName + divMonthClose + ' | ' + parseInt(dateMonth, 10);
However, as you imagine the result displayed is...
"<div id ="rawr">December</div> | 8"
It does not actually interpret the html and make the div layer. So my question is.. How can i insert html code within the variable so it actually works as html? Is there a function I am missing or is it even possible?
Thanks in advance for any help or ideas you might have!
$('#somewhere').html(dateString). – Marc B Nov 14 '11 at 18:12creatTextNode()doesn't interpret html in the string. it's inserted as literal text. – Marc B Nov 14 '11 at 19:31.html()call. No need to use raw dom operations when you're on jquery. – Marc B Nov 14 '11 at 19:42