JAVASCRIPT   33
adminpanel
Guest on 18th September 2023 12:20:26 PM


  1. // adminpanel.js
  2. $(document).ready(function(){
  3.     $('ul#admin-panel').on('click', function(){
  4.         $(this).toggleClass('visible');
  5.     })
  6. })

Raw Paste

Login or Register to edit or fork this paste. It's free.