In the below code I need to execute the newUrl
:
<SCRIPT type="text/javascript">
function callMyAction(){
var newUrl = '/makeObtained.action';
//here I need to execute the newUrl i.e. call it remote
//it will return nothing. it just starts server process
}
</SCRIPT>
<a onclick="callMyAction()" href='...'> ...</a>
How to make it?