Register

"use strict"; (function($) { $('.checkUser').on('focusout', function(e) { var url = 'https://app.safespal.org/user/check-user'; var value = $(this).val(); var token = 'MIP9zeXr3j60XIReHT23De0tTSg4kb8RNEBSlTOS'; var data = { email: value, _token: token } $.post(url, data, function(response) { if (response.data != false) { $('#existModalCenter').modal('show'); } }); }); })(jQuery);