You are reading a single comment by @Soul and its replies. Click here to read the full conversation.
  • Here is some code to Lorem Ipsum people you can't ignore yet :)

    // ==UserScript==
    // @author      mikec
    // @name        new replace with loren ipsum
    // @namespace   lfgss.com
    // @description A user friendly view of the new LFGSS
    // @include     http://www.lfgss.com/*
    // @version     1
    // @require     http://code.jquery.com/jquery-2.1.1.min.js
    // @require     http://sanderkorvemaker.nl/jquery/js/jquery.lorem.js
    // ==/UserScript==
    
    
    /**
     * Extend list below depending on who needs to be lorem ipsumed 
     */
    var ignoreList = new Array( "marcom","cliveo" );
    
    $( ".comment-item" ).each(function() {    	        
      var potentialBelm = $( this ).find( '.comment-item-author a strong' ).html();
      if($.inArray(potentialBelm, ignoreList) > -1){
    	var el = $( this ).find( '.comment-item-body' ).children('p');
    	var x = $( el ).text().length;
    	$( el ).lorem({ type: 'characters',amount:x,ptags:true});      
      }     
    });
    
  • Here is some code to Lorem Ipsum people you can't ignore yet :)

    Where and how does one place this useful code?

  • You need to install a browser add on called Tampermonkey you can then add a new script and copy and paste that it (without the line numbers) and save it.

About

Avatar for Soul @Soul started