Logo Background

Example Usage

Factoring Express (Agent Experience)


<script type="module" src="https://eo.ecapital.com/ecapital-factoring-express.js"></script>
<ecapital-factoring-express></ecapital-factoring-express>
      

To display the component, set the visible attribute to true with JavaScript:


<ecapital-factoring-express visible="true"></ecapital-factoring-express>
      

Example HTML:


<button id="showFactoringExpress">Apply Now</button>
<ecapital-factoring-express id="factoringExpress"></ecapital-factoring-express>
<script>
document.getElementById('showFactoringExpress').addEventListener('click', function (event) {
  event.preventDefault();
  document.getElementById('factoringExpress').visible = true;
});
</script>
      

Transportation Rate Checker (Applicant Experience)

Note: Rate Checker requires both modules to be imported:


<script type="module" src="https://eo.ecapital.com/ecapital-transportation-rate-checker.js"></script>
<script type="module" src="https://eo.ecapital.com/ecapital-factoring-express.js"></script>
<ecapital-transportation-rate-checker></ecapital-transportation-rate-checker>
<ecapital-factoring-express></ecapital-factoring-express>
      

To display the component, set the visible attribute to true with JavaScript:


<ecapital-transportation-rate-checker visible="true"></ecapital-transportation-rate-checker>
      

Example HTML:


<button id="showRateCheckerComponent">Apply Now</button>
<ecapital-transportation-rate-checker id="transportationRateChecker"></ecapital-transportation-rate-checker>
<script>
document.getElementById('showRateCheckerComponent').addEventListener('click', function (event) {
  event.preventDefault();
  document.getElementById('transportationRateChecker').visible = true;
});
</script>
      

Asset Based Financing


<script type="module" src="https://eo.ecapital.com/ecapital-asset-based-financing.js"></script>
<ecapital-asset-based-financing></ecapital-asset-based-financing>
      

To display the component, set the visible attribute to true with JavaScript:


<ecapital-asset-based-financing visible="true"></ecapital-asset-based-financing>
      

Example HTML:


<button id="showAssetComponent">Apply Now</button>
<ecapital-asset-based-financing id="assetBasedFinancing"></ecapital-asset-based-financing>
<script>
document.getElementById('showAssetComponent').addEventListener('click', function (event) {
  event.preventDefault();
  document.getElementById('assetBasedFinancing').visible = true;
});
</script>