<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>
<input required type="number"/>
if (isNaN(input.value)) alert('Неверный формат числа...');
<script>
function makeNumber(obj){
obj.value = obj.value.replace(/,/, '.');
if (/^(\-)?\d*(\.\d*)?$/.test(obj.value)) obj.defaultValue = obj.value;
else obj.value = obj.defaultValue;
}
</script>
<input type="text" onkeyup="makeNumber(this)"/>
$path = "http://example.com/index.php";
if (isset($_GET['name'])) header("Location: {$path}/{$_GET['name']}");
$url = basename(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
// /index.php/test в переменной будет test
// парсит все, что идет после последнего слэша
// редирект не тестил