https://community.servicenow.com/thread/171229



You can do this on front-end catalog forms like this...

 

var varName = 'user';

var elID = g_form.getControl(varName).id + 'LINK';

$(elID).hide();

 

Back-end forms and variables aren't as easy unfortunately.