techtipsguidelines: Blogging

TechTipsGuidelines

Post Top Ad

Showing posts with label Blogging. Show all posts
Showing posts with label Blogging. Show all posts

Thursday, July 26, 2018

How to Disable CTRL+U , CTRL+C and Right Click on Blogger and Website

5:44 AM 0

How to disable CTRL+U , CTRL+C and Right Click on Blogger Wordpress and Website also Webpage.Many article on internet about disable right click , copy content etc.. but its a cool Tips to prevent People to stealing / Copying your content. but there are many other ways to copy content from a webpage even section of text os disable on your Blogger wordpress or website and webpage. so alternately you can use a stronger javascript code which not disable selection of text only, but also it would disable CTRL+U (can used to see actual HTML code , used to create a webpage), CTRL+C (can be ised to copy highlighted / selected text) and right mouse click (display list of options to do something with the otem such as view source, copy, paste etc.) on your blogger wordpress or website and webpage.


Let's move to the tutorial of disabling CTRL+U, CTRL+C key and Mouse Right Click on your Blogger wordpress and website and webpage


Go to Blogger or your website html code search </head> tag, just above it paste below javascript code.


<script type='text/javascript'>
var isCtrl = false;
document.onkeyup=function(e)
{
if(e.which == 17)
isCtrl=false;
}
document.onkeydown=function(e)
{
if(e.which == 17)
isCtrl=true;
if((e.which == 85) || (e.which == 67) &amp;&amp; isCtrl == true)
{
// alert(&#8216;Keyboard shortcuts are cool!&#8217;);
return false;
}
}
var isNS = (navigator.appName == "Netscape") ? 1 : 0;
if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
function mischandler(){
return false;
}
function mousehandler(e){
var myevent = (isNS) ? e : event;
var eventbutton = (isNS) ? myevent.which : myevent.button;
if((eventbutton==2)||(eventbutton==3)) return false;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
</script>


Read More

How to Add MP3 Player in your Website or Blog

5:34 AM 0


Tumblr blog/Blogger/Any webpages - Add music player to your site 
YouTube As Your Music - Just grab a youtube video URL 

SoundCloud, exfm, MP3, RSS - We support all! 

Retina HD-Ready Skin - Super sharp on High Resolution screen 

Free Forever - Wikplayer will always remain free, so you don't have to worry that your playlist is gone 



Continuous playback


HTML5 for Mobile - Support on selected mobile devices like Safari on iPhone 
Elegant Looking Blog - Music player for Tumblr blog/site could let your friends know what songs you like 
Beautifully crafted player skin - Each skin is designed with our heart and mind 
As easy as ABC - Use the wizard below to generate the music player code which you can paste into your blog/site easily


How to insert/paste the code into your existing template?

Instructions for editing your Tumblr blog template 

  • Login to your account. Click on the Setting icon (the one next to the Power icon for logging out). On your left hand side, you will see a vertical menu showing Account, Dashboard, Email, Apps and the last row, your blog name. The last row is what you should click, so click on your blog name. After clicking, you will notice the middle part of the page has a section called Theme with a "Customize" button. Click that button.
  • You will now see a whole new page. There is an "Edit HTML" button. Click on that.
  • This will open up a dark grey area showing the HTML code. Scroll down and look for the <body> tag. Ensure that the body tag has an Angle Bracket before it. You can use the browser search function by holding down Ctrl + F (for Windows) or Command + F (for Mac) and type "<body" or "<body>".
  • Paste the code you obtained from us just below the <body> tag as shown in the picture HERE.
  • Click Update preview when you are done. Then click on the "Appearance" button on the top left which will take you back and allows you to save. Press the SAVE button, followed by the Close button. Visit your page to see the big change!

To start: Visit this site and Create your own Playlist

Read More

Post Top Ad

ADBLOCKER DETECTED
It looks like you're using an ad blocker. That's okay. Who doesn't?
But without advertising-income, we can't keep making this site awesome.
Please disable your ad blocker and then reload the page to continue enjoying our site.
Reload Page
Powered By - techtipsguidelines