Mixed Content: The page at 'https://w3codegenerator.com/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint
Sometimes you get the error Mixed Content: The page at 'https://w3codegenerator.com/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint in your console on call some ajax request on specific url with insecure XMLHttpRequest endpoint.
-
Remove http:// and add https:// on call ajax in url parameters to avoid insecure XMLHttpRequest endpoint request
<script> $.ajax({ type: "GET", url: 'https://api.joind.in/v2.1/talks/10889', data: { format: 'json' }, success: function(response){ console.log(response); } }); </script>
Change from url: 'http://api.joind.in/v2.1/talks/10889', to url: 'https://api.joind.in/v2.1/talks/10889', in ajax parameters
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Jquery
- Execute function after Ajax call is complete
- Enable click event on appended element using jQuery
- Ajax done fail ajaxcomplete in not a function
- Get the href link on click anchor in javascript
- How to validate input type file size in jQuery for multiple records
- Preview image in BLOB URL format on choose file in jQuery
- Show and hide target element on click button using javascript/jquery
- How to reset form input element on click
- Append method to add text to body not working
- How to create read more in jquery
- How to remove Choose File button in jquery
- Validate form using jQuery
- JQuery find text and show as bold in html page
- Preview image in base64 format using jQuery on change input file
- Jquery-3.6.0.min.js CDN link
- (index):128 Uncaught TypeError: MobileNumberVal.test is not a function
- Uncaught TypeError: $.ajax is not a function
- How to check object is empty or not in jQuery
- Show loading icon on click submit button in jQuery
- How to get closest form input value in jQuery
- Add and remove input fields on click button using jQuery
- Jquery.validate.min.js:4 Uncaught TypeError: Cannot read properties of undefined (reading 'mode')
- How to use and purpose of localstorage in javascript
- How to pass javascript variable to laravel route on ajax call
- How to find closest upper element and append html to below it in jquery