blob: 385fb2d030c9d35eff352d947e6c3bdfd384286d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<h1>Add Right</h1>
<div>Click to expand the boxes</div>
<?php
$this->linkForm->setAction($this->url());
echo $this->linkForm;
?>
<script type="text/javascript">
$(document).ready(function(){
$('fieldset').children('dl:gt(0)').hide();
$('fieldset fieldset>legend').css('cursor','pointer');
$('fieldset fieldset').click(
function(e){
if($(e.target).context.nodeName == "LEGEND"){
$(this).children('dl').slideToggle();
}
});
});
</script>
|