Using Javascript to hide 'Tests' (zephyr) tab on Jira top nav

bmacdonald05 July 8, 2014

I am using Java script (snippet below) to hide menu tabs on teh Jira top nav bar. This is working to desired effects for all tabs, accept for the 'test' tab also known as zephyr. AJS.$('#zephyr_je.topnav.tests').hide();

Does any one know why this is the case? And any solutions?

/* hiding menu items */

AJS.$("a[title='Manage your project with JIRA Agile']").hide();

AJS.$('#bonfire_top_menu_dropdown').hide();

AJS.$('#find_link').hide();

AJS.$('#home_link').hide();

AJS.$('#system-help-menu').hide();

AJS.$('#tempo_menu').hide();

AJS.$('#browse_link').hide();

AJS.$('#wi-structure-link').hide();

AJS.$('#zephyr_je.topnav.tests').hide();

AJS.$('#greenhopper-my-jira-home-set').hide();

AJS.$('#upm-requests-link').hide();

AJS.$('#quicksearch').hide();

AJS.$('#system-admin-menu').hide();

Thanks,

Ben

2 answers

0 votes
Juan Orellana October 7, 2015

How can i to hide "tests" tab for some users o roles? i'm using JIRA cloud

 

Thanks

0 votes
Bibek Behera
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 14, 2014

Hi Ben,

Could you please try AJS.$("[id^='zephyr_je.topnav.tests']").hide(); instead of AJS.$('#zephyr_je.topnav.tests').hide();

please get back to us with the outcome.

Thanks and Regards,

Bibek

Suggest an answer

Log in or Sign up to answer