About Us

About Us page of Techy Brother

 

About Us: Hello and a warm welcome to my Website! I’m Techy Brother, and I’m thrilled to have you here. This website is more than just a digital space – it’s a hub of creativity, information, and connection in the ever-expanding realm of social media. Our promise to you is to provide high-quality blog posts that are not only informative but also engaging and enjoyable to read.

To stay updated with the latest content from Techy Brother, be sure to subscribe to our newsletter and follow us on our social media channels. Your engagement fuels our passion and drives us to continuously deliver valuable content.

Thank you for being a part of our journey. Together, let’s navigate the ever-evolving landscape of social media and uncover its endless possibilities.

If you need any help in any case then, Contact Us. We are always here to Help.

Mail.TechyBrother@gmail.com

Warm regards,

Techy Brother.

Thanks.

jQuery(document).ready(function($) { $('article.post img').each(function() { var imageSrc = $(this).attr('src'); // Extract the image filename and extension from the URL var imageFilename = imageSrc.split('/').pop(); // Create a download link using the original image URL and filename var downloadLink = 'Download Image'; $(this).after(downloadLink); }); $(".download-button").on("click", function(e){ e.preventDefault(); var downloadLink = $(this).attr("href"); var counter = 25; // Changed the timer to 25 seconds var button = $(this); var interval = setInterval(function(){ if (counter <= 0) { clearInterval(interval); var anchor = document.createElement('a'); anchor.href = downloadLink; // Set the filename from the download link var filename = button.attr('download'); anchor.download = filename; anchor.click(); button.text('Download Image'); // Reset button text after download button.off("click"); // Remove the click event listener button.on("click", function(e){ e.preventDefault(); var downloadLink = $(this).attr("href"); var counter = 25; // Changed the timer to 25 seconds var button = $(this); var interval = setInterval(function(){ if (counter <= 0) { clearInterval(interval); var anchor = document.createElement('a'); anchor.href = downloadLink; // Set the filename from the download link var filename = button.attr('download'); anchor.download = filename; anchor.click(); button.text('Download Image'); // Reset button text after download } else { button.text('Please Wait ' + counter + 's'); counter--; } }, 1000); }); } else { button.text('Please Wait ' + counter + 's'); counter--; } }, 1000); }); }); document.addEventListener('contextmenu', function(e) { if (e.target.tagName === 'IMG') { e.preventDefault(); } });