Initial

You can specify an initial value for a field. The value you set will remain unless a new value comes in.

HTML
<div class="parent">
  <div class="blue">Blue Text</div>
</div>
Config
{
    "greenText": {
        "selector": ".green",
        "initial": "Default Text"
    } 
}
Output
{
    "greenText": "Default Text" 
}

Last updated