I’d like to have this slide function just work right after the page loads.
Right now it’s a click button function. How do I do this please?
I’m not a coder.
Thanks in advance.
<script type="text/javascript">
$(document).ready(function() {
  $('#slidebottom button').click(function() {
    $(this).next().slideToggle();
  });
  
});
</script>