JavaScript
6
Вклад в тег
$url = 'https://www.google.com/recaptcha/api/siteverify?secret=YOU_SECRET_KEY&response='.(array_key_exists('g-recaptcha-response', $_POST) ? $_POST["g-recaptcha-response"] : '').'&remoteip='.$_SERVER['REMOTE_ADDR'];
$resp = json_decode(file_get_contents($url), true);
if ($resp['success'] == true) {
//все хорошо
}
else {
// капча не решена
}
<iframe id="integrate" style="border:none;"></iframe>
var context = $("#integrate")[0].contentWindow.document;
$("body", context).html("heloo!")
<script>$("isolate").each(function ()
{
var content, context;
content = $(this).html();
$(this).html("<iframe style=\"border:none;\"></iframe>");
context = $("iframe", this)[0].contentWindow.document;
$("body", context).html(content);
})</script>
<isolate>your content</isolate>