Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function(){
- $('.groups a').each(function(){
- var color = $(this).css('color');
- var name = $(this).text();
- var clase = $(this).text().replace(/\s/g, '').toLowerCase().replace(/'/g, "").replace(/\(|\)/g, "").slice(0,10);
- $(this).attr('style', '--group:'+color+';');
- $(this).parent('b').replaceWith(this);
- $(this).addClass('gr'+clase).removeClass('gensmall');
- $(this).attr('title', name);
- $(this).empty();
- });
- $('.groups').each(function(){
- var content = $(this).children('a');
- $(this).html(content);
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement