Guest User

Untitled

a guest
Jun 7th, 2023
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <script>
  2. const tabs_title = document.querySelectorAll('.kt-tabs-title-list li a');
  3. tabs_title.forEach(function(e){
  4. e.addEventListener('mouseover', function() {
  5. e.click();
  6. });
  7. });
  8. </script>
Advertisement
Add Comment
Please, Sign In to add comment