Monday, December 28, 2015

How to Redirect Blogpost in to Blogspot com Blogger Tutorial

Go to your blog inside the Blogger Dashboard and choose Template. Then click the “Edit HTML” button followed by “Proceed.” Next, copy-paste the following code into the template after the <head> tag.
Watch Video 



<script type="text/javascript">
var blog = document.location.href.toLowerCase();
if (!blog.match(/\.blogspot\.com/)) {
blog = blog.replace(/\.blogspot\..*?\//, ".blogspot.com/ncr/");
window.location.replace(blog);
}

</script>

Click the Save Template button and now your Blogger Blog will always serve with the blogspot.com URL.

Source http://www.labnol.org

How to Disable Right-Click on your Blogspot Blog in Hindi



Step by Step :
1 . Blogger dashboard में login करें।
2 . अब layout > Add Gadget पे click करें।
3 . अब HTML/ javascript widget select करें।
4 . और ये code copy कर के paste  करें और save करें, अब आपकी blog safe है।
<script language=JavaScript>
<!--
 
//Disable right click script - By Myhelpblog.com
//
 
var message="Disable Right click";
////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
 document.oncontextmenu=new Function("return false")
// -->
</script>
अगर आप demo देखना चाहते हैं तो click करें ..Demo
Note :
ये सभी tricks blog  aur website के लिए है , लेकिन अगर आपकी blog wordpress development या website development तो आप इसे इस्तेमाल ना करें क्यों की अगर आप कोई code blog पे देते हैं तो वो visitor copy नहीं कर पाएगा ।
Source:http://www.myhelpblog.com/right-click-disable-wordpress-blog-blogger/