trying to get javascript to execute wsh through html

87 Views Asked by At

I'm stuck on this code...I'm trying to get the html page to, when you click the link, call the bsd function, which should pop up a "foo" alert. My code is below. Thanks for the help!

(function() {
  var WshShell = {};
  WshShell.log = function() {
    console.log(arguments);
  }

  var bsd = function BSD() {
    WshShell.log("foo");
    window.alert('foo!');
    return false;
  }

  document.getElementById("bsdTrigger").addEventListener('click', bsd);
})();
<body>
  a#bsdTrigger(href='#') foo a#ssddTrigger(href='#') bar

  <br />
  <a href="#" onclick="javascript:bsd();">bsd</a>
</body>

1

There are 1 best solutions below

2
On

this seems to work just fine : http://jsfiddle.net/895vmsok/

<a href="#" id="bsdTrigger" onclick="javascript:bsd();">bsd</a>

Perhaps I am misunderstanding your need here?