Created
November 29, 2013 18:08
-
-
Save mhenke/7709726 to your computer and use it in GitHub Desktop.
This file contains 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
<cfset variable.csh_id = 4> | |
<cfinclude template="../includes/header.cfm"> | |
<cfinclude template="../includes/chamberNav.cfm"> | |
<cfif isdefined("rightdisplayoutput.recordcount") and rightdisplayoutput.recordcount gt 0> | |
<div class="span6"> | |
<cfelse> | |
<div class="span9"> | |
</cfif><cfoutput>#trim(output.webtext)#</cfoutput> | |
</div> | |
<cfinclude template="../includes/rightSideBar.cfm"> | |
</div> | |
</div> | |
<!-- END: Content --> | |
<!-- JAVASCRIPT --> | |
<script src="_js/main.js" type="text/javascript"></script> | |
<script> | |
var e_li = $('#events_accordian').children('div').children('ul').children('li'); | |
e_li.click(function(){ | |
//console.log($(this).siblings()); | |
$(this).children('div').toggle(250, 'swing', function(){}); | |
}) | |
</script> | |
<cfinclude template="../includes/footer.cfm"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment