Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if (document.form_abonnement.ABO_SRE_PK_DEB.value == "")
<script>
function LTrim(strValue){
var LTRIMrgExp = /^\s */;
return strValue.replace(LTRIMrgExp, '');
}
function RTrim(strValue){
var RTRIMrgExp = /\s *$/;
return strValue.replace(RTRIMrgExp, '');
}
function checkVal(){
myText = LTrim(RTrim(document.myForm.textField.value))
if (myText != ""){
//add your code here
}
}
</script>