Re: Is it possible to enforce Alternative Text for an image?

  •  07-26-2010, 10:32 PM

    Re: Is it possible to enforce Alternative Text for an image?

    Please open "\CuteSoft_Client\CuteEditor\Scripts\Dialog\Dialog_InsertImage.js", locate "function do_insert()", add the following code at the beginning of this function:

      if (AlternateText.value == "")
      {
       alert("Please set alternative text!");
       return false;
      }
     
    Regards,
    Eric
View Complete Thread