I have this setup:
var htmlOne = "$('.class1').children('.username').html()";
var htmlTwo = "$('.class2').html()";
if(htmlTwo *= htmlOne)
{stuff};
It is supposed to see if the inner html of htmlTwo matches the inner html of htmlOne in some way. Is this set up right?
isEqualNode.