|
Post by Wormopolis on Oct 13, 2012 19:03:33 GMT -8
well.. I can have it ignore ALL italic tags..BUT I cant make it discern between what you are making quotes and what would be ANY word in italics. if someone were to put part of their post in italics, it would be ignored as well... you have seen how quotes are in my forum.. would you be interested in this maybe?
|
|
|
Post by Wormopolis on Oct 16, 2012 13:43:29 GMT -8
after this line
var postContent=postRow.cells[0].firstChild.nextSibling.cloneNode(true);
insert this
while (postContent.getElementsByTagName('i')[0]) postContent.removeChild(postContent.getElementsByTagName('i')[0]);
|
|