I have a simple two divs:
<div id="slide_menu">
<div id="tic">MENU</div>
</div>
And I would like to on click on div#tic to div#slide_menu toggle up and down. I was trying to use slideUp and slideDown functions and also slideToggle. bot nothing work. Here is my latest jquery script:
<script type="text/javascript">
$('#tic').click(function () {
$('#slide_menu').slideToggle();
});
Anyone? Help?
$(document).ready(function(){ // your stuff });– Austin Brunkhorst Mar 14 '12 at 23:51#ticelement could be absolutely positioned... – Šime Vidas Mar 14 '12 at 23:52