Skip to content
Snippets Groups Projects
checkForm.js 287 B
Newer Older
  • Learn to ignore specific revisions
  • /*function checkLanguage(
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
        value
    )
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
    {
    
    alert('ok2');
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
        $(document).ready(function() {
            if (value != 'default') {
                $('#returnCheckLanguage').css("display","none");
            } else {
                $('#returnCheckLanguage').css("display","block");
            }
        });
    }