Hi iam using ajax post method if i click on sidebar and for the ajax success result iam appending it to the div like this
$.ajax({
type: "POST",
url: "{site_url}publish/my_select_section_form/"+item,
success:function(data){
$('.sec-details').hide().html(data).slideDown();
}
});
it giving me sliding down effect and thats fine but if I want to apply toggle from left to right what can I do,can anyone suggest me