Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(function(){
- /*Edita la cantidad de miembros que quieres mostrar*/
- const quantity = 10;
- /*Edita el nombre de tus puntos*/
- const points = 'créditos';
- /*Edita tus clases del template memberlist_body para que puedan ser localizadas correctamente. Estos datos están hechos con el template memberlist_body por defecto de FA*/
- const memberRow = '#memberlist tbody tr'; /*Cada caja de miembro*/
- /*En estos, excluye lo que hayas puesto de valor en memberRow*/
- const memberAvatar = '.avatar-mini img'; /*Imagen de avatar*/
- const memberName = '.avatar-mini a span'; /*Nombre de usuario*/
- const memberPoints = 'td:nth-of-type(3)'; /*Puntos*/
- /*No edites a partir de aquí*/
- const memberlistLink = '/memberlist?mode=point&order=DESC&submit=Ok&username';
- $('.pointranking').each(function(){
- var self = $(this);
- $.get(memberlistLink, function(data){
- $(data).find(memberRow+':nth-of-type(-n+'+quantity+')').each(function(){
- var thisAvatar = $(this).find(memberAvatar).prop('outerHTML');
- var thisName = $(this).find(memberName).prop('outerHTML');
- var thisPoints = $(this).find(memberPoints).text();
- var thisRow = '<div class="pr-member">'+thisAvatar+'<span><b>'+thisName+':</b> <i>'+thisPoints+' '+points+'</i></span></div>';
- $(self).append(thisRow);
- });
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement