My code is for wordpress in noconflict mode
This code works only on double click not on a single click,any advice or guideness is welcomed.
I want to make it work on a single click.
Thank you in advance
$j=jQuery.noConflict();
$j(document).ready(function() {
$j("#icomenu").toggle(function(){
$j("#menu").animate({left:"0px"});
},
function(){
$j("#menu").animate({left:"-280px"});
})
}) ;