JavaScript - Simple Dropdown Change Image

In this tutorial we will create a Simple Dropdown Change Image using JavaScript. This code will dynamically change the image source every time the user choose in the select option. The code use onchange() function to launch a method that dynamically change the background image. This is a free user-friendly kind of program, you can modify it and apply to your working application. 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://sourcecodeter.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 Dropdown Change Image</h3>
  15. <hr style="border-top:1px dotted #ccc;">
  16. <div class="col-md-2"></div>
  17. <div class="col-md-8">
  18. <div class="form-inline" style="text-align:center;">
  19. <label>Select an image</label>
  20. <select id="choice" class="form-control" onchange="changeImage()()">
  21. <option value="">-- Select an option --</option>
  22. <option value="anime">Anime</option>
  23. <option value="people">People</option>
  24. <option value="food">Food</option>
  25. <option value="animal">Animal</option>
  26. </select>
  27. </div>
  28. <br />
  29. <div id="result" style="height:250px; border:0.5px solid #000; text-align:center;"></div>
  30. </div>
  31. </div>
  32. <script src="js/script.js"></script>
  33. </body>
  34. </html>

Creating the Script

This code contains the script of the application. This code will change the image background when the select tag choose some option 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. function changeImage(){
  2. var choice = document.getElementById('choice').value;
  3. if(choice == ""){
  4. alert("No Image Selected!");
  5. }else{
  6. var image = choice;
  7. }
  8.  
  9. var result=document.getElementById('result');
  10. result.removeAttribute('style');
  11. result.innerHTML="<img src='images/"+image+".jpg' width='100%' height='250px'/>";
  12.  
  13. }
There you have it we successfully created a Simple Dropdown Change Image 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