Skip to content

Instantly share code, notes, and snippets.

View SoldierCorp's full-sized avatar
🏠
Working from home

Edgardo Ramírez SoldierCorp

🏠
Working from home
View GitHub Profile
@SoldierCorp
SoldierCorp / functions.js
Last active November 23, 2017 00:17
Comprobar si hay conexión a Internet utilizando jQuery.Ajax con callback. --- Check internet connection using jQuery.Ajax with callback.
$(document).ready(function() {
var conn = true;
checkConnection();
function checkConnection() {
$.ajax({
url: 'http://yoursite.com/process.php',
async: false,
data: {'tag' : 'connection'}