Please go to my FIDDLE. I want to hide that Jpanel after load the page. How can I do that?
here is the code from FIDDLE.
JQuery
$(document).ready(function () {
var jPM = $.jPanelMenu({
menu: '#menu',
trigger: '.menu-trigger',
duration: 300
});
jPM.on();
$(".menu").click(function(){
var url = $(this).attr("link");
alert(url);
$( "#contents" ).load(url+" #area");
});
});