Mixed Content: The page at '***' was loaded over HTTPS, but requested an
insecure resource 'tel: 0612341234'. This content should also be served over HTTPS.
i use a normal tel link:
<a href="tel:072 123456">072 123456</a>
I realy like to serve the content over HTTPS, is there a good solution to fix this warning. Also breaks the green secure lock on the page.
it happens when click on the tel link. it only happens when in iframe.
Put the code below in iframe and click on the link, then te page will loose secure icon and shows the above message in dev console (CHROME)
<script src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
<body>
<div id='test'>
</div>
<script >
$('#test').html('<a href="tel:012222222">tel link </a>');
</script>
</body>
Looks like a bug to me.