I am building an ASP.NET MVC 3 app which will run in Azure. Everything was working well, until I switched to https. Now most of my jQuery plugins and some other javascript are not secure.
I’m using the Datatables library as well as jsTree, Watermaks and Breadcrumbs. Most of this script is to make our site look appealing.
Is there a way to make this secure? Or is it time to move a very lean javascript site?
Thank you for the help!
Just load your scripts via
httpsinstead ofhttp… seems obvious enough.If you are loading them from a CDN, check if said cdn has a
httpsoption, if not, you’ll need to serve them yourself through the samehttpsprotocol you are using for the rest of your site.