9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
|
var length = 35;
|
||
|
|
||
|
$(function(){
|
||
|
$(".pretty-link").each(function(i){
|
||
|
var str = $(this).text().replace("https://", "");
|
||
|
$(this).text(str);
|
||
|
});
|
||
|
});
|