This method works for both blogger and wordpress blogs, irrespective of platforms.
Lets start___________________________________________
Go to Blogger > Template > Backup your template
Click "Edit HTML"
Just above </head> paste the following script:
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'></script><script type='text/javascript'>
$(document).ready(function() {
$("a[href^='http://']").each(
function(){
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
}
}
);
- $("a[href^='https://']").each(
- function(){
- if(this.href.indexOf(location.hostname) == -1) {
- $(this).attr('target', '_blank');
- }
- }
- );
});
</script>
Than save your template . Ok now all done .
Please Comment below if you face any problem .
0 comments: