Advertisement
maximus87

Untitled

Nov 19th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. /* CSS CODE */
  2.  
  3. span.firstWord {
  4. display: block;
  5. line-height: 1;
  6. text-transform: uppercase;
  7. }
  8.  
  9. /* jQuery */
  10.  
  11. $.fn.firstWord1 = function() {
  12. var text = this.text().trim().split(" ");
  13. var first = text.shift();
  14. this.html((text.length > 0 ? "<span class='firstWord'>"+ first + "</span> " : first) + text.join(" "));
  15. };
  16. jQuery(".index-gallery .slide-wrapper").each(function() {
  17. $(this).find("p.title").firstWord1();
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement