HELP!

once

One time call for synchronous operations. See more about The side effects of the Replay Stack

xpertrule.once(function() { /* your code goes here */ });
  • "function" JavaScript code to execute once.

For example:

var aData = xpertrule.once(function() {
    var dt = new Date();
    return dt.getTime();
});

On This Page