Skip to content
Snippets Groups Projects
checkLicence.js 271 B
Newer Older
  • Learn to ignore specific revisions
  • Giovannoni Laurent's avatar
    Giovannoni Laurent committed
    function checkLicence()
    {
        $(document).ready(function() {
            if ($('#checkboxLicence').attr('checked')) {
                $('#returnCheckLicence').css("display","block");
            } else {
                $('#returnCheckLicence').css("display","none");
            }
        })
    }