Side navigation
Ticket #5818: test2.html
File test2.html, 0.5 KB (added by geki007, January 15, 2010 10:35AM UTC)
Testcase with link
<!DOCTYPE html>
<html>
<head>
<title>AJAX</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"></script>
<script type="text/javascript">
function testfunct(){
$.ajax({
url: 'ajax.txt',
success: function(data) {
$("body").append(data);
}
});
return false;
}
</script>
</head>
<body>
<a onclick="return testfunct();" href="/test">link</a>
</body>
</html>
Download in other formats:
Original Format
File test2.html, 0.5 KB (added by geki007, January 15, 2010 10:35AM UTC)
Testcase with link
<!DOCTYPE html>
<html>
<head>
<title>AJAX</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"></script>
<script type="text/javascript">
function testfunct(){
$.ajax({
url: 'ajax.txt',
success: function(data) {
$("body").append(data);
}
});
return false;
}
</script>
</head>
<body>
<a onclick="return testfunct();" href="/test">link</a>
</body>
</html>