Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- postToFreezeReturn = function postToFreezeReturn() {
- if (toreturn) {
- $.ajax({
- url: 'ajax/postToReturn.php',
- success: function(data) {
- if (data) {
- console.log(data);
- }
- else {
- window.location.href = "mybets";
- localStorage.playedreturn = false;
- }
- }
- });
- } else {
- $.ajax({
- url: 'ajax/postToFreeze.php',
- data: $("#freeze").serialize(),
- type: 'POST',
- success: function(data) {
- if (data) console.log(data);
- else {
- toreturn = true;
- postToFreezeReturn();
- }
- }
- });
- }
- }
- setInterval(postToFreezeReturn, 300)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement