how to pass the arguments from js file to template file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ganesanjc
    Senior Member
    • Apr 2019
    • 116

    how to pass the arguments from js file to template file

    how to pass the arguments from js file to template file
  • Andorxor
    Member
    • May 2019
    • 65

    #2
    PHP Code:
    data: function()
    {
      var data = Dep.prototype.data.call(this);
      data.YourData = "YourData";
      return data;
    } 
    

    Comment

    Working...