If I delete a record; i get the confirmation dialog; if I press [OK], i am getting a 404 error.
I do NOT have a further script to handle (e.g. on-delete) who is handling the delete.
error:
Failed to load resource: the server responded with a status of 404 ()
jquery.min.js:4 Mixed Content: The page at ‘https://mylinkwhatever.com’ was loaded over HTTPS, but requested an insecure script ‘http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js?_=1704666806130’.
This request has been blocked; the content must be served over HTTPS.
Note: jquery.min.js seems a little bit old (in lib/js)
Could You help
Hi,
In your code where you include JavaScript files, you can remove “http:”‘. This way it will load the files based on your site protocol, ssl or nonssl.
http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js?_=1704666806130’
With
//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js?_=1704666806130’
Thanks for the quick response. That does not seem to solve the problem. The error only occurs as I confirm the [Delete]. See: https://imgur.com/a/np4kn6j The jquery.min.js is version: V 1.11.0 Is seems from the error report (https://imgur.com/a/g0SGHYO) that the call to googleapis is done from the jquery.min.js……