From RuneGlory
Jump to: navigation, search
Line 67: Line 67:
  
 
var split = $( this ).html().split('/');
 
var split = $( this ).html().split('/');
$( this ).html( split[ split.length - 1 ] ).removeAttr( "title" );
+
$( this ).html( split[ split.length - 1 ] );
  
 
});
 
});
Line 76: Line 76:
 
var href = $( this ).find( "a" ).attr( "href" );
 
var href = $( this ).find( "a" ).attr( "href" );
 
var title = $( this ).find( "a" ).attr( "title" );
 
var title = $( this ).find( "a" ).attr( "title" );
$( this ).parent().attr( "href", href );
+
$( this ).parent().attr( "href", href ).attr( "title", title );
$( this ).parent().attr( "title", title );
 
  
 
});
 
});

Revision as of 03:45, 20 March 2016

Hello, this is just a preview.

- Jplayer