Call Javascript function from html file

Viewed 123

I Have this JavaScript code:

var cr = {};
cr.plugins_ = {};
cr.runtime = null;

cr.plugins_.Vinoos_Markets = function(runtime) {
    this.runtime = runtime;
};
(function() {
 function initialize_events(result) {
  alert(result);
 }
})();
<button onclick="initialize_events('Test Result');">Send Result</button>

how to run 'initialize_events' function from html by clicking on button?

I don't have access to editing JavaScript file.

1 Answers
Related