javascript - Add smooth effect on hiding a list -
i have simple hide , show script list. ideally have smooth effect on it. there way make similar to:
https://jqueryui.com/accordion/#sortable
here js:
function togglea() {      var list = document.getelementbyid("lista");      if (list.style.display == "none") {     list.style.display = "block";     } else {         list.style.display = "none";     } } 
have had @ jquery animate?
Comments
Post a Comment