JavaScript - Simple Hide Profile

In this tutorial we will create a Simple Hide Profile using JavaScript. This code will hide your profile pic to the public when the user check the checkbox. The code bind the checkbox as a onchange function to toggle the image by hiding and showing it as a public appearance. This is a free program, you can modify it and use it as your own. We will be using JavaScript as a server-side scripting language because It allows greater control of your web page behavior than HTML alone. It is embedded in HTML that responsible to allow user to interact with the computer .

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6. </head>
  7. <nav class="navbar navbar-default">
  8. <div class="container-fluid">
  9. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10. </div>
  11. </nav>
  12. <div class="col-md-3"></div>
  13. <div class="col-md-6 well">
  14. <h3 class="text-primary">JavaScript - Simple Hide Profile</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-3"></div>
  17. <div class="col-md-6">
  18. <center><img src="images/profile.png" id="image" style="border:1px solid #000;" height="200" width="200"/></center>
  19. <center><input type="checkbox" id="hide" />Hide Profile</center>
  20. </div>
  21. </div>
  22. <script src="js/script.js"></script>
  23. </body>
  24. </html>

Creating the Script

This code contains the script of the application. This code will toggle the image appearance when the checkbox is clicked. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
  1. var toggle=false;
  2. var hide=document.getElementById("hide");
  3. var image=document.getElementById("image");
  4.  
  5. hide.onchange = function(){
  6. if(!toggle){
  7. toggle=true;
  8. image.src="images/default.png";
  9. }else{
  10. toggle=false;
  11. image.src="images/profile.png";
  12. }
  13. }
There you have it we successfully created a Simple Hide Profile using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment