$( document ).ready(function() {
$("param").each(function(i) {
alert("Hello");
$(this).attr("value", $(this).attr("value").replace("http://", "https://"));
});
$("iframe").each(function(i) {
alert(i);
$(this).attr("src", $(this).attr("src").replace("http://", "https://"));
});
});