/**
 * escape HTML plugin
 */
jQuery.escapeHtml = function(htmlText) {
  return jQuery("<div>").text(htmlText).html();
};

