Για να ανοίγουν μόνο τα links των αναρτήσεων του blog σε νέα καρτέλα:
1) Σύνδεση στον blogger
2) Σχεδίαση ή Διάταξη
3) Επεξεργασία HTML
4) Με την βοήθεια του CTRL + F ψάξτε το:
</body>
5) Μόλις το βρείτε ακριβώς από πάνω του προσθέστε το παρακάτω κώδικα:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
//<![CDATA[
jQuery('a').each(function() {
// Let's make external links open in a new window.
var href = jQuery(this).attr('href');
if (typeof href != 'undefined' && href != "" && (href.indexOf('http://') != -1 || href.indexOf('https://') != -1) && href.indexOf(window.location.hostname) == -1) {
jQuery(this).attr("target", "_blank");
}
});
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
jQuery('a').each(function() {
// Let's make external links open in a new window.
var href = jQuery(this).attr('href');
if (typeof href != 'undefined' && href != "" && (href.indexOf('http://') != -1 || href.indexOf('https://') != -1) && href.indexOf(window.location.hostname) == -1) {
jQuery(this).attr("target", "_blank");
}
});
//]]>
</script>
6) Αποθήκευση και τέλος
***
Για να ανοίγουν όλα τα link του blog σε νέα καρτέλα:
1) Σύνδεση στον blogger
2) Σχεδίαση ή Διάταξη
3) Επεξεργασία HTML
4) Με την βοήθεια του CTRL + F ψάξτε το:
</body>
5) Μόλις το βρείτε ακριβώς από πάνω του προσθέστε το παρακάτω κώδικα:
<base target="_blank"></base>
6) Αποθήκευση και τέλος
********************************************
How to Make links open in New Tab:.
1) go to Blogger > Dashboard > Design > Edit Html.
2) Search for </body> tag.
3) Now paste the Below Code Above/before </body> tag.
<base target="_blank"></base>
***
How to Make only links of posts open in New Tab:.1) go to Blogger > Dashboard > Design > Edit Html.
2) Search for </body> tag.
3) Now paste the Below Code Above/before </body> tag.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
//<![CDATA[
jQuery('a').each(function() {
// Let's make external links open in a new window.
var href = jQuery(this).attr('href');
if (typeof href != 'undefined' && href != "" && (href.indexOf('http://') != -1 || href.indexOf('https://') != -1) && href.indexOf(window.location.hostname) == -1) {
jQuery(this).attr("target", "_blank");
}
});
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
jQuery('a').each(function() {
// Let's make external links open in a new window.
var href = jQuery(this).attr('href');
if (typeof href != 'undefined' && href != "" && (href.indexOf('http://') != -1 || href.indexOf('https://') != -1) && href.indexOf(window.location.hostname) == -1) {
jQuery(this).attr("target", "_blank");
}
});
//]]>
</script>
That's it Now You are Done.
Δεν υπάρχουν σχόλια:
Δημοσίευση σχολίου