I am trying to dynamically change the CSS href
by using window.open
in JavaScript.
<a class="cssButton" id="Launch" target="_blank" data-baseref="Example/index.html?" href="Example/index.html?" >Launch Example</a>
I want to transform it into:
window.open(/* url goes here */);
while keeping all attributes from the css href above.