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>
this seems to work just fine : http://jsfiddle.net/895vmsok/
Perhaps I am misunderstanding your need here?