Friday, July 5, 2013

Hide Context Menu items-SP

/script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js" type="text/javascript"//script//script /src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js" type="text/javascript"//script//script type="text/javascript"/

$(document).ready(function(){
$('.ms-MenuUIPopupBody').live('mouseover', function() {
$('#ID_Subscribe').parent().hide();
$('#ID_Subscribe').remove();
$('#ID_Checkout').parent().hide();
$('#ID_Checkout').remove();
$('#ID_DeleteDocItem').parent().hide();
$('#ID_DeleteDocItem').remove();
$('#ID_Send').parent().hide();
$('#ID_Send').remove();
$('#ID_MngPerms').parent().hide();
$('#ID_MngPerms').remove();
$('#ID_Workflows').parent().hide();
$('#ID_Workflows').remove();
$('#ID_Versions').parent().hide();

$('#ID_Versions').remove();
});
});/script

No comments: