Posts
Text Code Box Copy to Clipboard in Blogger
Copy This JS Code and Paste it Above close Head Tag in Blogger Theme file
<!-- click to copy js code / paste above </head> Tag -->
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js'/>
<script src='https://clipboardjs.com/dist/clipboard.min.js'/> Click to Copy
Copy This script Code and Paste it Above close Body Tag in Blogger Theme file
<!-- click to copy js script code / Paste above </body> Tag -->
<script>
$(function() {
var clipboard = new ClipboardJS('.ClickToCopyButton');
$(".ClickToCopyButton").click(function() {
$(this).html('Copied!!');
var that = $(this);
var intrvrl = setInterval(function(){
that.html('Click to Copy');
clearInterval(intrvrl); },
2000);
});
});
</script> Click to Copy
Copy This CSS and Paste it in Blogger Theme file
Go to: Blogg…