how to add img src in javascript code example

Example 1: how do you code an image in html

<!DOCTYPE html>
<html>
   <head>
      <title>HTML img Tag</title>
   </head>

   <body>
      <img src="/html/images/test.png" alt="Simply Easy Learning" width="200"
         height="80">
   </body>
</html>

Example 2: set img src using javascript

document.getElementById("imageid").src="../template/save.png";

Example 3: javascript set image src

// Pure JavaScript to Create img tag and add attributes manually ,
var image = document.createElement("img");
var imageParent = document.getElementById("body");
image.id = "id";
image.className = "class";
image.src = searchPic.src;            // image.src = "IMAGE URL/PATH"
imageParent.appendChild(image);

// Set src in pic1
document["#pic1"].src = searchPic.src;

// or with getElementById

document.getElementById("pic1").src= searchPic.src;

// jQuery to archive this,
$("#pic1").attr("src", searchPic.src);

Tags:

Css Example