I use chrome & IIS for my testing of a web based Azure VM product and purchased a domain and SSL certificate if I run my software
http://tpa###.com.au the popup works correctly if I run
https://tpa###.com.au the popup doesn't work
I Went into Chrome > Settings > Privacy and Security > Site Settings > Popups and redirects and clicked sites can send Popups and redirects no change HELP Please I use popups through all my 100+ programs to confirm deletions save etc
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/blitzer/jquery-ui.css"
rel="stylesheet" type="text/css" />
<script type="text/javascript">
function ShowPopup(message, title, cssclass) {
$("#dialog").html(message);
$("#dialog").dialog({
title: title,
modal: true,
dialogClass: cssclass,
buttons: {
Ok: function () {
$(this).dialog('close');
}
}
});
};
</script>
<script type="text/javascript">
function ShowPopupYN(message, title, cssclass) {
$("#dialog").html(message);
$("#dialog").dialog({
title: title,
modal: true,
dialogClass: cssclass,
buttons: {
Yes: function () {
$(this).dialog('close');
$('[id*=btnYes]').trigger('click');
},
No: function () {
$(this).dialog('close');
$('[id*=btnNo]').trigger('click');
}
}
});
};
</script>
</head>
<body>
<div id="grad"></div>
<form id="form1" runat="server" autocomplete="off">
<asp:Panel ID="pcenter" runat="server" Height="540px">
<asp:Button Text="Yes" ID="btnYes" runat="server" OnClick="OnYes" Style="display: none;" />
<asp:Button Text="No" ID="btnNo" runat="server" OnClick="OnNo" Style="display: none;" />
<asp:HiddenField ID="hfYesMessage" runat="server" />
<div id="dialog">