Advertisement
edugaspa

Acordion - remover link do título

Jan 24th, 2022 (edited)
913
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.24 KB | None | 0 0
  1. <script>
  2. //elementor - remove "a" from acordion title
  3. jQuery( document ).ready(function( $ ){
  4.     $(".elementor-tab-title a").replaceWith(function() {
  5.         return "<span class='more'>" + this.innerHTML + "</span>";
  6.     });
  7. });
  8. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement