Created
May 19, 2014 17:16
-
-
Save swthate/c759d307f6a2c77219f3 to your computer and use it in GitHub Desktop.
jQuery UI Accordian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- File: /app/View/Jobs/view.ctp --> | |
<?php echo $this->Html->css('jquery-ui-1.10.4.custom'); ?> | |
<?php echo $this->Html->script('jquery-1.10.2'); ?> | |
<?php echo $this->Html->script('jquery-ui-1.10.4.custom.min'); ?> | |
<script> | |
$(function() { | |
$( "#accordion" ).accordion({ | |
collapsible: true | |
}); | |
}); | |
</script> | |
<!-- ... --> | |
<!-- Comment Form ................................... --> | |
<a name="comment"></a> | |
<div id="accordian"> | |
<h3>Post Comment</h3> | |
<div> | |
<?php echo $this->Element('comments'); ?> | |
</div> | |
<h3>Test</h3> | |
<div> | |
<p>hi</p> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment