<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Title</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
function addItem() {
var xheight = ($("#test").height() + 15 + "px");
$("#test").animate({
height: xheight
});
}
function removeItem() {
var xheight = ($("#test").height() - 15 + "px");
$("#test").animate({
height: xheight
});
}
</script>
<style type="text/css">
#test {height:200px;border:solid 1px red;}
</style>
</head>
<body>
<div id="test">
<a href="#" onclick="addItem();">Expand 1 item</a>
<br />
<a href="#" onclick="removeItem();">Collapse 1 item</a>
</div>
</body>
</html>
|