I'm not familiar with JavaScript and web development, as my experience is in Java and C++ primarily, and I'm even new to that. I'm using AutoHotKey to automate data entry for the company I work for, and in order to get into the form that to fill out a new item, I have to click a link. I've had no problem when the links all had URLs for href
values, but now I'm running into one that is a JavaScript link, and I don't know how to click it... here is the code for the link.
<a href="javascript:"
tabindex="7"
onclick="this.parentNode.parentNode._skip=true;$find('ctl00_MainContent_view1Extender').executeAction('ActionBar',0,null,0);return false;"
onfocus="$showHover(this,"ctl00_MainContent_view1Extender$0$ActionGroup$0","ActionGroup",2)"
title="New Reimbursement"
onblur="$hideHover(this)">New Reimbursement</a>
And I'm not sure what to do with it, despite a days worth of Googling.
Thanks in advance!