Blocked loading mixed active content
javascript, jquery, warnings
Solution
Use this code to include your cdn files : Use https protocol in your url :
<link rel="stylesheet" href="https://code.jquery.com/ui/1.8.10/themes/smoothness/jquery-ui.css" type="text/css">
<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.10/jquery-ui.min.js"></script>
Or this pattern :
<link rel="stylesheet" href="//code.jquery.com/ui/1.8.10/themes/smoothness/jquery-ui.css" type="text/css">
<script type="text/javascript" src="//ajax.aspnetcdn.com/ajax/jquery.ui/1.8.10/jquery-ui.min.js"></script>
Problem
I am getting these warnings in my console and my script is not working fine Blocked loading mixed active content "http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" Here is the screenshot: How can I fix these warnings? My Scripts: ``` <script type="text/javascript" src="http://malsup.github.io/jquery.blockUI.js"> </script> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"> ```