0
I have the following code (Its function is to expand the image into a div where has the id #expandedImg.
        function myFunction(imgs) {
            var expandImg = document.getElementById("expandedImg");
            var imgText = document.getElementById("imgtext");
            expandImg.src = imgs.src;
            imgText.innerHTML = imgs.alt;
            expandImg.parentElement.style.display = "block";
            $("#expandedImg").attr('value', imgs.alt );
        }
It works perfectly, but I wanted to implement that when it expands the image it also picks up the alt image (What works) and add within a value of an input with Hidden.
I have tried several codes to add the value of the alt in value but could not.
Below my full code:
function myFunction(imgs) {
  var expandImg = document.getElementById("expandedImg");
  var imgText = document.getElementById("imgtext");
  expandImg.src = imgs.src;
  imgText.innerHTML = imgs.alt;
  expandImg.parentElement.style.display = "block";
  //O quero implementar
  $("#expandedImg").attr('value', imgs.alt);
}* {
  box-sizing: border-box;
}
/* The grid: Four equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
  padding: 10px;
}
/* Style the images inside the grid */
.column img {
  opacity: 0.8;
  cursor: pointer;
}
.column img:hover {
  opacity: 1;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}
/* Closable button inside the expanded image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}<span onclick="this.parentElement.style.display='none'" class="closebtn">×</span>
<img class="excluirImagem" id="expandedImg" style="width:100%">
<form>
  <input id="expandedImg" type="hidden" name="excluirImagem" value="">
  <button type="submit">Excluir imagem</button>
</form>
<div id="imgtext"></div>
<div class="row">
  <div class="column">
    <img src="https://www.w3schools.com/howto/img_nature.jpg" alt="Nature" style="width:100%" onclick="myFunction(this);">
  </div>
  <div class="column">
    <img src="https://www.w3schools.com/howto/img_nature.jpg" alt="Snow" style="width:100%" onclick="myFunction(this);">
  </div>
  <div class="column">
    <img src="https://www.w3schools.com/howto/img_nature.jpg" alt="Mountains" style="width:100%" onclick="myFunction(this);">
  </div>
  <div class="column">
    <img src="https://www.w3schools.com/howto/img_nature.jpg" alt="Lights" style="width:100%" onclick="myFunction(this);">
  </div>
</div>
You’re using the same id
expandedImgimage and input, so the problem. The value is being inserted in the image and not in the input.– Sam
I hadn’t thought about it, in a way it’s logical. So that’s why I was able to use another
idfor the input.– R. Wegner
You don’t even have to put an id in the input
nameeven:$("[name=excluirImagem]")– Sam