1

I want to display tax amount, shipping amount , and total in custom jquery popup dialog and that should be visible in checkout page. I have added a button in checkout page on click of it a popup shows simple text. i want to display tax and ship amount. How can I do that?? can anyone help me to do that.

ASHWINI MURTHY
  • 117
  • 3
  • 12

1 Answers1

1

You need to put code into your js file like this.

customfunction: function () {
    return "YOUR VALUE";
}

And into your html file you can call code like this.

<span class="yourclass" data-bind="text: customfunction()"></span>
Teja Bhagavan Kollepara
  • 3,816
  • 5
  • 32
  • 69
Dhiren Vasoya
  • 9,484
  • 12
  • 33
  • 59