PeopleTools and Lifecycle Management - PSFT (MOSC)

MOSC Banner

How to hide Apply button in 8.54

edited Feb 11, 2015 10:04AM in PeopleTools and Lifecycle Management - PSFT (MOSC) 4 commentsAnswered

In Tools 8.49 we have a small piece of javascript that is hiding the Apply button when we transfer to a page outside of the current component.  This javascript is not working in Tools 8.54.  Has anyone tried to hide the Apply button in 8.54?  Below is the java script we were using in 8.49

<script language="Javascript">

function HideApply()
{
z_apply_btn = document.getElementById("#ICApply");
if(z_apply_btn != null)
{
z_apply_btn.style.visibility = "hidden";
clearInterval(hide_button);
}
}

hide_button = setInterval("HideApply()",1);
</script>

Thanks!

Karen

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center