Written bellow code in document.ready function
// Remove People picker hyperlink
$('a[href*="userdisp.aspx?ID="]').each(function()
{
var link = $(this);
$(this).after("" + link.text() + "");
$(this).remove();
});
// Remove People picker hyperlink
$('a[href*="userdisp.aspx?ID="]').each(function()
{
var link = $(this);
$(this).after("" + link.text() + "");
$(this).remove();
});
No comments:
Post a Comment