0

I have an ajax script on a remote server making to call to my local host which is running a django app:

           $(document).ready(function(){
            $.ajax({
                url: URLLOCALHOST
                dataType: 'jsonp',
                success: function(){}
                }
            });

what goes in place of my URLLOCALHOST?

dsbailey
  • 108
  • 1
  • 1
  • 9
  • This post provides a broad context but does not ask a specific question. You should consider dividing this larger problem into smaller more specific component problems that can be expressed technically and ask each question directly. – Ben Campbell Oct 25 '15 at 03:22
  • Thanks! I've tried to narrow it down to one technical question. – dsbailey Oct 25 '15 at 05:02

1 Answers1

0

I think I found the answer here: Access to a site on localhost from remote

Apparently local host cannot be accessed from another network without security issues.

Community
  • 1
  • 1
dsbailey
  • 108
  • 1
  • 1
  • 9