Check if Empty


Check if a form field is empty
function isEmpty(elementid) {
    if($("#" + elementid).getValue() == '' ) return true;
    return false;
  
}