function fnStringTrim(str) { var checking = str; if (str.replace(/(^\s*)|(\s*$)/g, '') != '') { return true; } else { return false; } }