I am trying to understand a button on a third party site my company uses. The button signs up a user for a class.
<a class="btn btn-large btn-blue" href="javascript:void(0);"
data-bind="click: $root.clickAction.bind($data, ActionType)">
<span data-bind="text: Title">Sign up</span></a>
I was hoping to provide this button on a page in our company internal website, but I am not familiar with Knockout. I understand a GET request so if that button did something like this then I would get it.
thirdparty.com?method=register&classId=1234&userId=abcde
Is it even feasible to turn that knockout button into a GET or to somehow provide the signup mechanism on our internal sites to this 3rd party site? I can certainly paste more of the source as I'm sure more is needed.
I've tried using Firefox developer tools and viewing network traffic. I don't want to keep spinning my wheels if this isn't doable.