today's coding quiz
// today's quiz is simple: | |
// | |
// fork this code and explain, in english, what it does. | |
// | |
// suggest simpler alternatives. | |
// | |
if(state != 'complete'){ | |
var get = function(){ | |
jq.ajax({ | |
'type' : 'GET', | |
'url' : url, | |
'cache' : false, | |
'success' : function(html){ | |
version.replaceWith(html); | |
} | |
}); | |
}; | |
var head = function(callback){ | |
jq.ajax({ | |
'type' : 'HEAD', | |
'url' : url, | |
'success' : function(res, code, xhr){ | |
var server_last_modified = xhr.getResponseHeader("Last-Modified"); | |
if(Date.parse(server_last_modified) > Date.parse(last_modified)){ | |
callback(); | |
}; | |
} | |
}); | |
}; | |
head(get); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment