Pencarian

Minggu, 30 Juni 2024

JS Nofollow External Link

Kode js dibawah ini akan merubah semua link ada pada halaman website menjadi rel="nofollow" 

<script type='text/javascript'>

//<![CDATA[

// Nofollow

$("a").filter(function() {

 return this.hostname && this.hostname !== location.hostname

}).attr('rel', 'nofollow').attr('target', '_blank');

//]]>

</script>

Kalian hanya perlu meletakan kode tersebut diatas </body>

© 2015 [BUG] GEDEBUG All Rights Reserved.