Side navigation
Ticket #4517: test.php
File test.php, 0.8 KB (added by icyhandofcrap, April 11, 2009 04:43AM UTC)
<?php
if( isset($_GET['HELLO']) )
header("Location: http://www.google.com/");
?>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$().ajaxError(
function (event, xhr, ajaxOptions, thrownError)
{
alert(xhr.getAllResponseHeaders());
}
);
$(document).ready(
function()
{
$("#hello").click(
function()
{
$(this).load("test.php?HELLO");
}
);
}
);
</script>
</head>
<body>
<span id="hello">hello</span>
</body>
</html>
Download in other formats:
Original Format
File test.php, 0.8 KB (added by icyhandofcrap, April 11, 2009 04:43AM UTC)
<?php
if( isset($_GET['HELLO']) )
header("Location: http://www.google.com/");
?>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$().ajaxError(
function (event, xhr, ajaxOptions, thrownError)
{
alert(xhr.getAllResponseHeaders());
}
);
$(document).ready(
function()
{
$("#hello").click(
function()
{
$(this).load("test.php?HELLO");
}
);
}
);
</script>
</head>
<body>
<span id="hello">hello</span>
</body>
</html>