I need to open a link in a new tab, but I am encountering an issue with sending object parameters along with it.
Here is the HTML code:
<a ng-click="go(row)" ></a>
And here is the JavaScript code:
$state.go('link', {
'search': {
'obj': {
'id': something
}
}
});
I have tried using href and ng-href without success. Any suggestions would be appreciated. Thank you.