Guest User

Untitled

a guest
Jun 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <script>
  2. $.ajax({
  3. url: 'https://ipapi.co/json/',
  4. dataType: 'json',
  5. async: false,
  6. success: function(data) {
  7. if(data.country_name.toUpperCase() != "INDIA")
  8. window.location.href = "/abc";
  9. }
  10. });
  11. </script>
Add Comment
Please, Sign In to add comment