<script>
jQuery(document).ready(function($){
$("#panel").click(function(){
event.preventDefault();
$("#panel_stats").slideToggle("slow");
});
});
</script>
I can confirm that this works in Chrome and Safari but somehow not in Internet Explorer and Firefox. I've already read somewhere that having a inline HTML "display:none" would work but in the end it didn't.
Removing event.preventDefault(); did the trick, thank you all !
<script>
$(document).ready(function(){
$("#panel").click(function(){
$("#panel_stats").slideToggle("slow");
});
});
</script>
Try removing event.preventDefault();
also define panel to #panel
or .panel