Html 5 Time Tag not recognized by IE8 when cloning
- by matsientst
I have been having trouble getting IE to recognize the new Time tag in this context. This all works great in FF.
Here is the code:
var origComment = $('.articleComment:first div');
if (origComment.length > 0) {
var commentHtml = origComment.clone(true);
commentHtml.find('time').text('today');
var html = '<article class="' + ((side == 'LEFT')…