All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.myfaces.custom.inputTextHelp.resource.inputTextHelp.js Maven / Gradle / Ivy

function resetHelpValue(helpText, id)
{
    var element=document.getElementById(id);
    if(element.value==helpText)
    {
        element.value="";
    }
}

function selectText(helpText, id)
{
    var element=document.getElementById(id);
    if(element.value==helpText)
    {
        element.select();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy