Update Restful Server authored by Derek Williams's avatar Derek Williams
<head>
<script>
function(link,target){
//set the click function of the given id (link)
$('#'+link).click(function() {
//get the details panel from the next page
var details = $(target+'#mydetails');
//set its state to true
details.open = true;
//redirect to that page
window.location.replace(details);
});
}
</script>
</head>
| Endpoint | Type | Examples | | Endpoint | Type | Examples |
|---|---|---| |---|---|---|
| /login | POST | <a href="#login-success">Success</a> | | /login | POST | <a href="#login-success">Success</a> |
... ...
......