Skip to content

Instantly share code, notes, and snippets.

@swthate
Created May 19, 2014 17:16
Show Gist options
  • Save swthate/c759d307f6a2c77219f3 to your computer and use it in GitHub Desktop.
Save swthate/c759d307f6a2c77219f3 to your computer and use it in GitHub Desktop.
jQuery UI Accordian
<!-- 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