I need the script for categories toogle
Can any one help me?
Can any one help me?
Last edited by Gyzmo on December 19th 2011, 6:20 pm; edited 1 time in total
<script src="http://code.jquery.com/jquery-1.6.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$('#clickme').click(function() {
$('#book').fadeToggle("slow", "linear");
});
});
</script>
<style type="text/css">
#book{display:none;}
</style>
<div id="clickme">Click here</div>
<img id="book" src="http://i86.servimg.com/u/f86/11/96/49/61/blank_10.gif"/>
In the index_box template. Like this:svanirox wrote:Gassy
where to put the script ?
<script src="http://code.jquery.com/jquery-1.6.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$('#clickme').click(function() {
$('#book').fadeToggle("slow", "linear");
});
});
</script>
<style type="text/css">
#book{display:none;}
</style>
<div id="clickme">Click here</div>
<img id="book" src="http://i86.servimg.com/u/f86/11/96/49/61/blank_10.gif" />