Skip to content

Instantly share code, notes, and snippets.

@slick2
Created February 14, 2015 16:37
Show Gist options
  • Save slick2/f399676606e21355ddab to your computer and use it in GitHub Desktop.
Save slick2/f399676606e21355ddab to your computer and use it in GitHub Desktop.
Traditional Long Poll
(function poll() {
setTimeout(function() {
$.ajax({
url: '/magento_ajax_import_status',
type: 'GET',
success: function(data) {
obj.setValue(data.value);
},
dataType: "json", complete: poll }
);
}, 30000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment