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?

http://api.jquery.com/animate/


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -