Thursday, June 5, 2014

Remove hyper link from people picker fields

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();
});
   

No comments:

Post a Comment