Different ways to copy the content from a blog
1. Select the content using mouse. Use "CTRL + C" to copy and "CTRL + V" to paste.
2. Use "CTRL + A" To select all the content in a web page, "CTRL +C" to copy all the content. Open a notepad/wordpad, Paste the content in it using "CTRL + V" and select the required data from the pasted content.
3. If the Copy option is disabled, Click on Edit tab -> Click on Select All option to select all the content on the page. Use "CTRL +C" to copy all the content. Open a notepad/wordpad, Paste the content in it using "CTRL + V" and select the required data from the pasted content. Use "CTRL + C" to copy and "CTRL + V" to paste.
4.if the Select All option is also disabled, still you can copy. Click on File tab -> Click on "Save Page As"/"Save As" option. Enter a name to save the content. Now right click on the file saved and choose an editor to open the file. Once the HTML file is completely loaded, select the content that you want. Use "CTRL + C" to copy and "CTRL + V" to paste.
Enjoy Blogging...
Note: If the copy is disabled on a particular post for a blog means, the author is not willing to share the content or trying to protect the data from misuse. So don't copy such data or duplicate the data in another blog/site.
Showing posts with label Post. Show all posts
Showing posts with label Post. Show all posts
Friday, August 20, 2010
Thursday, August 19, 2010
Disable Copy Option for the Blog Posts
Follow these steps for disabling the copy option for the blog posts:
1. Goto Design -> Edit HTML
2. Make sure Expand Widget Templates check-box is not selected
3. Search for </head> tag
4. Copy the following Java script and Paste it before the </head> tag
<script language='javascript'>
var browserName=navigator.appName;
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
window.onload = function() {
if (browserName=="Microsoft Internet Explorer")
{
document.onselectstart = function() {return false;}
}
if (browserName=="Netscape")
{
document.onmousedown = function () { return false; }
}
if(is_chrome)
{
document.onselectstart = function() {return false;}
document.onmousedown = function () { return true; }
}
}
</script>
5. Click on SAVE TEMPLATE
6. Click on View Blog to verify the changes made.
Enjoy Blogging...
Note: Still there are some workarounds to copy the blog post contents. At least disabling direct copy, gives the intention of blogger to the visitors.
1. Goto Design -> Edit HTML
2. Make sure Expand Widget Templates check-box is not selected
3. Search for </head> tag
4. Copy the following Java script and Paste it before the </head> tag
<script language='javascript'>
var browserName=navigator.appName;
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
window.onload = function() {
if (browserName=="Microsoft Internet Explorer")
{
document.onselectstart = function() {return false;}
}
if (browserName=="Netscape")
{
document.onmousedown = function () { return false; }
}
if(is_chrome)
{
document.onselectstart = function() {return false;}
document.onmousedown = function () { return true; }
}
}
</script>
5. Click on SAVE TEMPLATE
6. Click on View Blog to verify the changes made.
Enjoy Blogging...
Note: Still there are some workarounds to copy the blog post contents. At least disabling direct copy, gives the intention of blogger to the visitors.
Subscribe to:
Posts (Atom)