I am trying to create a toggle panel to show and hide the additional div.Please find my code snippet of the function below. It is working fine in Chrome,Safari&Firefox . It is not working on IE 9 alone. Please help.
handleExpandClick : function(e){
e.preventDefault();
e.stopPropagation();
$(e.currentTarget).hide("slow");
var nextElem = e.currentTarget.parentElement.nextElementSibling;
$(nextElem).slideDown("slow");
}
1 Answer