Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Try with following code
$("#customfield_10571").closest('div.field-group').hide(); $("#customfield_10571").closest('div.field-group').show();
Why do you need Javascript to do it? You can do it in field configurations or take it off from the screens.
But if you must do it using Javascript, here is a snippet that will work for any custom field including version picker.
AJS.$("#customfield_10000").parent().hide();
Where customfield id is 10000.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think I should specify few more things, I want to hide it even in view screen, here is my current code
<script type="text/javascript">
version = document.getElementById('customfield_10609');
version.closest('div.field-group').hide();
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if you want to hide the field in view screen just remove the field from view screen,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The above code does it only for edit. Try Prasad's solution if you want to hide it from View as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.