I\'m doing some pretty basic jQuery ajax stuff on my website, and I\'m having a boatload of trouble.
Here\'s the relevant code:
$(document).ready( fu
301 Permanent Redirect may be happening. To check run Fiddler and watch the Result column. Usually 200 codes, but I spotted a 301 code.
The https jquery ajax call was redirecting to http, causing the Mixed Content error.
Try fixing the URL so your server doesn't have to redirect
url: "/jsontest/randomdata/" // there was a missing trailing /
// i.e. https://larsendt.com/jsontest/randomdata?ymax=500&count=32&t=0.9604179110508643
// was going to https://larsendt.com/jsontest/randomdata/?ymax=500&count=32&t=0.9604179110508643