Udoro

TAB ON HOVER

Mar 13th, 2021 (edited)
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. COULD GET THIS TO WORK
  2. jQuery(document).ready(function($) {
  3. "use strict";
  4. $('.oxy-tabs .oxy-tab').on('mouseenter', function() {
  5. $(this).find('a').click();
  6. });
  7. });
  8.  
  9.  
  10. THIS WORKS
  11. jQuery(document).ready(function($) {
  12. "use strict";
  13. $('.oxy-tabs .oxy-tab').on('mouseenter', function() {
  14. $(this).click();
  15. });
  16. });
Add Comment
Please, Sign In to add comment