generalFunction.js 564 Bytes
Newer Older
1
2
3
4
5
6
7
8
// password requirement
function checkPasswordReq(pwd) {
    if (pwd.length < 8) {
        isBest = false;
    } else {
        isBest = true;
    }
    return isBest
Rosanny Sihombing's avatar
Rosanny Sihombing committed
9
10
11
12
13
14
15
16
17
18
19
}

// to get the queries of the URL
function getQueryStringParams(params, url) {
    // first decode URL to get readable data
    var href = decodeURIComponent(url || window.location.href);
    // regular expression to get value
    var regEx = new RegExp('[?&]' + params + '=([^&#]*)', 'i');
    var value = regEx.exec(href);
    // return the value if exist
    return value ? value[1] : null;
20
}