Add html word before category

If you want to add “Tuppersex” text before each category name, you can do it by jquery

jQuery(document).ready(function(){
  var catList = jQuery('.cat_col li a');
  catList.each(function(key, value){
    var data = jQuery(this).text();
    data="Tuppersex "+data;
    jQuery(this).text(data);
  });
});

Code: http://jsbin.com/AJuJeQi/1/edit?html,js,output