2014-11-25 19:42:52 +01:00
|
|
|
|
2014-12-01 17:36:18 +01:00
|
|
|
function postcounter(onSuccess, onError)
|
2014-11-25 19:42:52 +01:00
|
|
|
{
|
|
|
|
$.ajax(
|
|
|
|
{ url: '/counter'
|
2014-12-01 17:36:18 +01:00
|
|
|
, success: onSuccess
|
2014-11-25 19:42:52 +01:00
|
|
|
, error: onError
|
|
|
|
, type: 'POST'
|
|
|
|
});
|
|
|
|
}
|
2014-12-01 17:36:18 +01:00
|
|
|
|
|
|
|
function getcounter(onSuccess, onError)
|
2014-11-25 19:42:52 +01:00
|
|
|
{
|
|
|
|
$.ajax(
|
|
|
|
{ url: '/counter'
|
2014-12-01 17:36:18 +01:00
|
|
|
, success: onSuccess
|
2014-11-25 19:42:52 +01:00
|
|
|
, error: onError
|
|
|
|
, type: 'GET'
|
|
|
|
});
|
|
|
|
}
|