Advertisement
fauzanjeg

JKIT || Change First Letter to Uppercasse on JKit - Icon Box widget

May 8th, 2025
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.44 KB | None | 0 0
  1. /** JKIT || Change First Letter to Uppercasse on JKit - Icon Box widget */
  2. (function ($) {
  3.   $(function () {
  4.     const titleEl = document.querySelector('.jeg-elementor-kit.jkit-icon-box .icon-box .title');
  5.     const words = titleEl.textContent.trim().split(' ');
  6.  
  7.     if (words.length > 0) {
  8.       words[0] = words[0].toUpperCase(); // Change First Letter to Uppercase
  9.       titleEl.textContent = words.join(' ');
  10.     }
  11.   })
  12. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement